diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/.gitignore b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/checkstyle-idea.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/checkstyle-idea.xml new file mode 100644 index 0000000..36ab091 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/checkstyle-idea.xml @@ -0,0 +1,25 @@ + + + + 8.23 + JavaOnlyWithTests + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/libraries/lib.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/libraries/lib.xml new file mode 100644 index 0000000..89a750c --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/libraries/lib.xml @@ -0,0 +1,10 @@ + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/misc.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/misc.xml new file mode 100644 index 0000000..69ace3f --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/misc.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/modules.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/modules.xml new file mode 100644 index 0000000..b272e25 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/vcs.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/vcs.xml new file mode 100644 index 0000000..b2bdec2 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.vscode/settings.json b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.vscode/settings.json new file mode 100644 index 0000000..c767678 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/.vscode/settings.json @@ -0,0 +1,6 @@ +{ + "java.project.referencedLibraries": [ + "lib/**/*.jar", + "/Users/flyingtopher/Desktop/Code Citadel/flatlaf-3.5.2.jar" + ] +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Action.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Action.java new file mode 100644 index 0000000..c203790 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Action.java @@ -0,0 +1,35 @@ +package CognitiveModel.ModelFiles; + +public abstract class Action { + + Integer priority; // Priority of the Task + Integer delay; // Potential Delay before starting the task + String targetDREF; + Integer taskTime; // How long should the task take + boolean taskComplete; // Is the task completed? + ActionType actionType; + + public Action(ActionType actionType, int delay) { + this.actionType = actionType; + this.delay = delay; + this.targetDREF = null; + } + + public Action(ActionType actionType, int delay, String target) { + this.actionType = actionType; + this.delay = delay; + targetDREF = target; + } + + public ActionType getType() { + return actionType; + } + + public Integer getDelay() { + return delay; + } + + public String getTarget() { + return targetDREF; + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/ActionType.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/ActionType.java new file mode 100644 index 0000000..1dbd30e --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/ActionType.java @@ -0,0 +1,7 @@ +package CognitiveModel.ModelFiles; + +public enum ActionType { + VISION, + MOTOR, + DELAY, +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Delay.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Delay.java new file mode 100644 index 0000000..b6685b5 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Delay.java @@ -0,0 +1,14 @@ +package CognitiveModel.ModelFiles; +// package ProjectModels.CognitiveModel; + +public class Delay extends Action { + + public Delay() { + super(ActionType.DELAY, 1000); + } + + public Delay(int delay) { + super(ActionType.DELAY, delay); + } + +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MindQueue.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MindQueue.java new file mode 100644 index 0000000..ec1dbc5 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MindQueue.java @@ -0,0 +1,62 @@ +package CognitiveModel.ModelFiles; +// package ProjectModels.CognitiveModel; + +import java.util.LinkedList; + +public class MindQueue { + /* + Recommended Changes/Improvements + See Google Doc Notes 12/11/24 + */ + + LinkedList q; + + public MindQueue() { + q = new LinkedList(); + } + + public void push(Action e) { + q.add(e); + } + + public Action removeEvent(Action e) { + Action temp = e; + q.remove(e); + return temp; + } + + public Action pop() { + Vision v = new Vision(); + if (q.isEmpty()) { + return v; + } + return q.remove(); + } + + public boolean isEmpty() { + return q.isEmpty(); + } + + public String queueToString() { + String queueTrace = "Next to Execute ==> "; + + for (Action action : q) { + if (action.getType() == ActionType.VISION) { + queueTrace += "[V]"; + } + if (action.getType() == ActionType.MOTOR) { + queueTrace += "[M]"; + } + if (action.getType() == ActionType.DELAY) { + queueTrace += "[D]"; + } + } + queueTrace += "\n"; + return queueTrace; + } + + public int queueLength() { + return q.size(); + } + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Model.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Model.java new file mode 100644 index 0000000..5642765 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Model.java @@ -0,0 +1,282 @@ +package CognitiveModel.ModelFiles; + +import java.io.BufferedWriter; +import java.io.File; +import java.io.FileWriter; +import java.io.IOException; + +// import ModelFiles.ActionType; +// import ModelFiles.MotorType; + +public class Model { + + private MindQueue q; // Queue for actions + boolean modelActive; // On/Off Switch for the model execution + XPlaneConnect xpc; // Allows connection to the simulator + String storedVisionTarget; + float[] storedVisionResult; + boolean logCreated; + boolean logAllowed; + File dataLogFile = null; + + // Constructors + public Model() { + q = new MindQueue(); + modelActive = false; + logCreated = false; + } + + public Model(XPlaneConnect xpc) { + q = new MindQueue(); + modelActive = false; + this.xpc = xpc; + logCreated = false; + } + + /* Getters */ + public MindQueue getQueue() { + return q; + } + + /* Setters */ + + /* + * Setup Methods + * Printing, Empty check, Activation/Deactivation of Model, etc. + */ + public void activateModel() { + modelActive = true; + } + + public void establishConnection(XPlaneConnect newXPC) { + this.xpc = newXPC; + } + + public void deactivateModel() { + modelActive = false; + } + + public boolean isEmpty() { + return q.isEmpty(); + } + + public void push(Action a) { + q.push(a); + } + + public boolean isActive() { + return modelActive; + } + + public void printModelQueue() { + System.out.println(q.queueToString()); + } + + public int getModelQueueLength() { + return q.queueLength(); + } + + public void createAction(ActionType actionType, MotorType motorType, int delay, String target) { + Action newAction = null; + switch (actionType) { + case VISION: + newAction = new Vision(delay, target); + this.push(newAction); + break; + case MOTOR: + newAction = new Motor(motorType, delay, target); + this.push(newAction); + break; + case DELAY: + newAction = new Delay(delay); + this.push(newAction); + break; + } + } + + /* + * Processing Methods + * + */ + + /* + * Process the next event in the model queue + */ + public float[] next() { + float[] returnArray = null; + Action temp = q.pop(); + // System.out.println("Type of Action: " + temp.getType()); + + if (temp.getType() == ActionType.VISION) { // Vision Action (Get Data) + handelVisionAction(temp, returnArray); + } else if (temp.getType() == ActionType.MOTOR) { // Motor Action (Act Upon Data) + handleMotorAction(temp); + } else if (temp.getType() == ActionType.DELAY) {// Pure Delays (Do nothing) + handleDelayAction(temp); + } + // q.push(temp); + return returnArray; + } + + /* Next Helpers */ + private void handelVisionAction(Action temp, float[] returnArray) { + Vision tempV = (Vision) temp; + initiateDelay(tempV.getDelay()); + String dref = tempV.getTarget(); + try { + returnArray = xpc.getDREF(dref); + storedVisionTarget = dref; + storedVisionResult = returnArray.clone(); + // System.out.println(returnArray[0]); + } catch (IOException e) { + + } + } + + private void handleMotorAction(Action temp) { + /* + TODO: GoogleDoc Notes 12/11/24 + + */ + + Motor tempM = (Motor) temp; + MotorType motorType = tempM.getMotorType(); + float[] currentControls = null; + try { + currentControls = xpc.getCTRL(0); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + + try { + switch (motorType) { + case PITCHUP: + float[] pitchUp = { currentControls[0] + 0.01f }; + if (storedVisionResult[0] > 80) { + if (currentControls[0] < 0.2f) { + System.out.println("Pitching Up"); + xpc.sendCTRL(pitchUp); + } + } + break; + case PITCHDOWN: + float[] pitchDown = { currentControls[0] - 0.01f }; + if (storedVisionResult[0] < 80) { + if (currentControls[0] > -0.2f) { + // System.out.println("Sending Pitch Down"); + System.out.println("Pitching Down"); + xpc.sendCTRL(pitchDown); + } + } + break; + case THROTTLEUP: + break; + + case THROTTLEDOWN: + + break; + } + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + private void handleDelayAction(Action temp) { + Delay tempD = (Delay) temp; + initiateDelay(tempD.getDelay()); + storedVisionTarget = "INTERRUPTION: DELAY"; + } + + public static void initiateDelay(int delay) { + try { + Thread.sleep(delay); // Using the action's Built in Delay + } catch (InterruptedException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } + + + public float[] getCurrentControls() throws IOException{ + float [] returnArray = null; + try { + returnArray = xpc.getCTRL(0); + } catch (IOException e) { + // TODO Auto-generated catch block + while(returnArray == null) { + System.out.println("Waiting for reconnect"); + returnArray = xpc.getCTRL(0); + } + } + return returnArray; + } + + public void startLog() { + logAllowed = true; + } + + public void stopLog() { + logAllowed = false; + logCreated = false; + } + + public boolean logPermission() { + return logAllowed; + } + + public void logData() { + if(logAllowed) { + logProcess(); + } + } + + + private void logProcess(){ + if(!logCreated) { + dataLogFile = new File("./dataLog/" + java.time.LocalDateTime.now() + ".csv"); + logCreated = true; + try { + float[] ctrl1 = this.getCurrentControls(); + String setup = "Elevator, Roll, Yaw, Throttle, Flaps\n"; + FileWriter fw = new FileWriter(dataLogFile, true); + BufferedWriter br = new BufferedWriter(fw); + br.write(setup); + br.flush(); + } catch (IOException e) { + + } + } + String log = null; + try { + float[] ctrl1 = this.getCurrentControls(); + + + //Labled Format + log = String.format("[Elevator: %2f] [Roll: %2f] [Yaw: %2f] [Throttle:%2f] [Flaps: %2f] \n", + ctrl1[0], ctrl1[1], ctrl1[2], ctrl1[3], ctrl1[5]); + //CSV Format + log = String.format("%2f, %2f, %2f, %2f, %2f\n", + ctrl1[0], ctrl1[1], ctrl1[2], ctrl1[3], ctrl1[5]); + + FileWriter fw = new FileWriter(dataLogFile, true); + BufferedWriter br = new BufferedWriter(fw); + br.write(log); + br.flush(); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + System.out.println("No data to log"); + } + } + + + public float[] getStoredVisionResult() { + return storedVisionResult; + } + + public String getStoredVisionTarget() { + return storedVisionTarget; + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Motor.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Motor.java new file mode 100644 index 0000000..56bd756 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Motor.java @@ -0,0 +1,44 @@ +package CognitiveModel.ModelFiles; + +import java.io.IOException; + +public class Motor extends Action { + + float[] control; + MotorType motorType; + + public Motor(MotorType motorType) { + super(ActionType.MOTOR, 1000); + this.motorType = motorType; + } + + // public Motor(int delay) { + // super(ActionType.MOTOR,delay); + // } + + public Motor(MotorType motorType, int delay, String target) { + super(ActionType.MOTOR, delay, target); + this.motorType = motorType; + } + + public void createMotorControl() { // TODO: Maybe takes in a formatted set of vision inputs? + control = null; + } + + public MotorType getMotorType() { + return motorType; + } + + public void sendMotorControl(XPlaneConnect xpc) { + + if (control != null) { + try { + xpc.sendCTRL(control); + } catch (IOException e) { + // TODO Auto-generated catch block + System.out.println("Control failed to send"); + } + } + } + +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MotorType.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MotorType.java new file mode 100644 index 0000000..75f8b97 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/MotorType.java @@ -0,0 +1,8 @@ +package CognitiveModel.ModelFiles; + +public enum MotorType { + PITCHUP, + PITCHDOWN, + THROTTLEUP, + THROTTLEDOWN +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Process.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Process.java new file mode 100644 index 0000000..eb6ad66 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Process.java @@ -0,0 +1,9 @@ +package CognitiveModel.ModelFiles; + +public class Process { + + public Process() { + + } + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Tests.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Tests.java new file mode 100644 index 0000000..d85d872 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Tests.java @@ -0,0 +1,19 @@ +package CognitiveModel.ModelFiles; + +import org.junit.Test; + +import static org.junit.Assert.assertEquals; + +public class Tests { + + MindQueue m = new MindQueue(); + + @Test + public void test1() { + Integer i = 1; + Action a = new Vision(); + m.push(a); + assertEquals(i, m.pop()); + } + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Vision.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Vision.java new file mode 100644 index 0000000..027f409 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/Vision.java @@ -0,0 +1,21 @@ +package CognitiveModel.ModelFiles; + +public class Vision extends Action { + + public Vision() { + super(ActionType.VISION, 1000); + } + + public Vision(int delay) { + super(ActionType.VISION, delay); + } + + public Vision(String dref) { + super(ActionType.VISION, 1000, dref); + } + + public Vision(int delay, String dref) { + super(ActionType.VISION, delay, dref); + } + +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/Beacon.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/Beacon.java new file mode 100644 index 0000000..c998ea8 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/Beacon.java @@ -0,0 +1,45 @@ +package CognitiveModel.ModelFiles.XPCdependencies; + +import java.net.InetAddress; + + +public class Beacon { + + private InetAddress xplaneAddress; + private int pluginPort; + private String pluginVersion; + private int xPlaneVersion; + + + public Beacon(InetAddress xplaneAddress, int pluginPort, String pluginVersion, int xPlaneVersion) { + this.xplaneAddress = xplaneAddress; + this.pluginPort = pluginPort; + this.pluginVersion = pluginVersion; + this.xPlaneVersion = xPlaneVersion; + } + + public String getHost() { + return xplaneAddress.getHostAddress(); + } + + public String getPluginVersion() { + return pluginVersion; + } + + public String getXplaneVersion() { + return String.format("%.2f", xPlaneVersion / 100.0); + } + + public int getPluginPort() { + return pluginPort; + } + + public InetAddress getXplaneAddress() { + return xplaneAddress; + } + + @Override + public String toString() { + return "host: " + getHost() + ":" + getPluginPort() +" version: " + getPluginVersion() + " X-Plane Version: " + getXplaneVersion(); + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconParser.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconParser.java new file mode 100644 index 0000000..d14344d --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconParser.java @@ -0,0 +1,54 @@ +package CognitiveModel.ModelFiles.XPCdependencies; + +import java.io.IOException; +import java.net.DatagramPacket; +import java.net.InetAddress; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; + +/** + * Parser class that parses the UDP discovery BECN packet. The format of the packet is + * - 4 bytes: BECN + * - 1 byte: 0 + * - 2 bytes: XPlaneConnect server port e.g. '49009' + * - 4 bytes: X-Plane version e.g. '11260' + * - null terminated string: XPlaneConnect plugin version e.g. '1.3-rc.1' + */ +public class BeaconParser { + + private static String BECN = "BECN"; + + private static int XPC_PORT_OFFSET = BECN.length() + 1; + private static int XPC_PORT_LEN = 2; + private static int XPC_VERSION_OFFSET = XPC_PORT_OFFSET + XPC_PORT_LEN; + private static int XPC_VERSION_LEN = 4; + private static int XPC_PLUGIN_VERSION_OFFSET = XPC_VERSION_OFFSET + XPC_VERSION_LEN; + + + public Beacon readBCN(DatagramPacket packet) throws IOException { + if (packet.getLength() < BECN.length()) { + throw new IOException("BECN response too short"); + } + + byte[] data = packet.getData(); + + String command = new String(data, 0, BECN.length()); + if (!command.equals(BECN)) { + throw new IOException("Expected " + BECN + " got '" + command + "'"); + } + + InetAddress address = packet.getAddress(); + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + // 2 bytes: port as short + converted to an int + int port = bb.getShort(XPC_PORT_OFFSET) & 0xffff; + + // 4 bytes: x plane version as int + int version = bb.getInt(XPC_VERSION_OFFSET); + + // plugin version + String pluginVersion = new String(data, XPC_PLUGIN_VERSION_OFFSET, packet.getLength() - XPC_PLUGIN_VERSION_OFFSET); + + return new Beacon(address, port, pluginVersion.trim(), version); + } +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconReceivedListener.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconReceivedListener.java new file mode 100644 index 0000000..b66338a --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/BeaconReceivedListener.java @@ -0,0 +1,10 @@ +package CognitiveModel.ModelFiles.XPCdependencies; + +public interface BeaconReceivedListener { + + /** + * Called every time a BECN packet is received + * @param beacon The parsed beacon + */ + void onBeaconReceived(Beacon beacon); +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/DiscoveryConnectionCallback.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/DiscoveryConnectionCallback.java new file mode 100644 index 0000000..88cffb5 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/DiscoveryConnectionCallback.java @@ -0,0 +1,14 @@ +package CognitiveModel.ModelFiles.XPCdependencies; + +import CognitiveModel.ModelFiles.*; + +public interface DiscoveryConnectionCallback { + + /** + * Helper callback called when a 1st XPlanePlugin is discovered. When the 1st packet is received, an XPlaneConnect + * instance is created and the discovery is stopped. + * + * @param xpc The XPlaneConnect instance configured with the discovered + */ + void onConnectionEstablished(XPlaneConnect xpc); +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/ViewType.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/ViewType.java new file mode 100644 index 0000000..60ea6ba --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/ViewType.java @@ -0,0 +1,60 @@ +//NOTICES: +// Copyright (c) 2013-2018 United States Government as represented by the Administrator of the +// National Aeronautics and Space Administration. All Rights Reserved. +// +// DISCLAIMERS +// No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, +// EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE +// SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT +// SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO +// THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY +// GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, +// SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. +// FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY +// SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." +// +// Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES +// GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF +// RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, +// EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR +// RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD +// HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY +// PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER +// SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. +package CognitiveModel.ModelFiles.XPCdependencies; + +/** + * Represents a camera view in X-Plane + * + * @author Jason Watkins + * @version 1.1 + * @since 2015-05-08 + */ +public enum ViewType +{ + Forwards(73), + Down(74), + Left(75), + Right(76), + Back(77), + Tower(78), + Runway(79), + Chase(80), + Follow(81), + FollowWithPanel(82), + Spot(83), + FullscreenWithHud(84), + FullscreenNoHud(85); + + private final int value; + private ViewType(int value) + { + this.value = value; + } + + public int getValue() + { + return value; + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/WaypointOp.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/WaypointOp.java new file mode 100644 index 0000000..5f31615 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/WaypointOp.java @@ -0,0 +1,50 @@ +//NOTICES: +// Copyright (c) 2013-2018 United States Government as represented by the Administrator of the +// National Aeronautics and Space Administration. All Rights Reserved. +// +// DISCLAIMERS +// No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, +// EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE +// SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT +// SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO +// THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY +// GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, +// SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. +// FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY +// SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." +// +// Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES +// GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF +// RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, +// EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR +// RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD +// HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY +// PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER +// SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. +package CognitiveModel.ModelFiles.XPCdependencies; + +/** + * Represents operations that can be performed by the WYPT command. + * + * @author Jason Watkins + * @version 1.0 + * @since 2015-04-09 + */ +public enum WaypointOp +{ + Add(1), + Del(2), + Clr(3); + + private final int value; + private WaypointOp(int value) + { + this.value = value; + } + + public int getValue() + { + return value; + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/XPlaneConnectDiscovery.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/XPlaneConnectDiscovery.java new file mode 100644 index 0000000..8672dd1 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPCdependencies/XPlaneConnectDiscovery.java @@ -0,0 +1,94 @@ +package CognitiveModel.ModelFiles.XPCdependencies; + +import CognitiveModel.ModelFiles.*; + +import java.io.IOException; +import java.net.DatagramPacket; +import java.net.InetAddress; +import java.net.MulticastSocket; +import java.net.SocketException; + + +/** + * The XPlaneConnectDiscovery joins a UDP multi cast group and listens for BECN packets published by + * XPlaneConnect server plugin. It allows to clients to discover XPlane instances and be sure that the XPlanePlugin is + * installed. + */ +public class XPlaneConnectDiscovery implements AutoCloseable { + + private static int DEFAULT_PORT = 49710; + private static String DEFAULT_ADDRESS = "239.255.1.1"; + + private BeaconReceivedListener mListener; + + private MulticastSocket socket = null; + private byte[] buf = new byte[256]; + + private int mPort; + private String mAddress; + private BeaconParser parser = new BeaconParser(); + + private XPlaneConnectDiscovery(int port, String address) { + mPort = port; + mAddress = address; + } + + public XPlaneConnectDiscovery() { + this(DEFAULT_PORT, DEFAULT_ADDRESS); + } + + public void start(DiscoveryConnectionCallback callback) throws IOException { + onBeaconReceived(beacon -> { + this.close(); + + try { + XPlaneConnect xpc = new XPlaneConnect(beacon); + callback.onConnectionEstablished(xpc); + } catch (SocketException e) { + System.err.println("Could not connect to a discovered XplaneConnect " +beacon+ ": " + e.getMessage()); + } + }); + start(); + + } + + @SuppressWarnings("deprecation") // Added custom + public void start() throws IOException { + System.out.println("Starting XPlane Connect discovery"); + socket = new MulticastSocket(mPort); + InetAddress group = InetAddress.getByName(mAddress); + socket.joinGroup(group); + while (socket != null) { + DatagramPacket packet = new DatagramPacket(buf, buf.length); + socket.receive(packet); + if (mListener == null) { + continue; + } + try { + Beacon beacon = parser.readBCN(packet); + mListener.onBeaconReceived(beacon); + } catch (IOException ex) { + System.err.println("Received packet on discovery group but could not parse it: " + ex); + } + } + close(); + System.out.println("XPlane Connect discovery ended"); + } + + + public void onBeaconReceived(BeaconReceivedListener mListener) { + this.mListener = mListener; + } + + @Override + public void close() { + if (socket != null) { + socket.close(); + socket = null; + } + } + + public void stop() { + close(); + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPlaneConnect.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPlaneConnect.java new file mode 100644 index 0000000..a422e4a --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/CognitiveModel/ModelFiles/XPlaneConnect.java @@ -0,0 +1,919 @@ +//NOTICES: +// Copyright (c) 2013-2018 United States Government as represented by the Administrator of the +// National Aeronautics and Space Administration. All Rights Reserved. +// +// DISCLAIMERS +// No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, +// EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE +// SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT +// SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO +// THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY +// GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, +// SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. +// FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY +// SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." +// +// Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES +// GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF +// RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, +// EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR +// RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD +// HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY +// PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER +// SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. + +package CognitiveModel.ModelFiles; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.lang.AutoCloseable; +import java.net.*; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; + +import CognitiveModel.ModelFiles.XPCdependencies.*; + +/** + * Represents a client that can connect to and interact with the X-Plane Connect + * plugin. + * + * @author Jason Watkins + * @version 0.1 + * @since 2015-03-31 + */ +public class XPlaneConnect implements AutoCloseable { + // private static int clientNum; + private DatagramSocket socket; + private InetAddress xplaneAddr; + private int xplanePort; + + /** + * Gets the port on which the client receives data from the plugin. + * + * @return The incoming port number. + */ + public int getRecvPort() { + return socket.getLocalPort(); + } + + /** + * Gets the port on which the client sends data to X-Plane. + * + * @return The outgoing port number. + */ + public int getXPlanePort() { + return xplanePort; + } + + /** + * Sets the port on which the client sends data to X-Plane + * + * @param port The new outgoing port number. + * @throws IllegalArgumentException If {@code port} is not a valid port number. + */ + public void setXPlanePort(int port) { + if (port < 0 || port >= 0xFFFF) { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + xplanePort = port; + } + + /** + * Gets the hostname of the X-Plane host. + * + * @return The hostname of the X-Plane host. + */ + public String getXPlaneAddr() { + return xplaneAddr.getHostAddress(); + } + + /** + * Sets the hostname of the X-Plane host. + * + * @param host The new hostname of the X-Plane host machine. + * @throws UnknownHostException {@code host} is not valid. + */ + public void setXplaneAddr(String host) throws UnknownHostException { + xplaneAddr = InetAddress.getByName(host); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using default + * ports and assuming X-Plane is running on the + * local machine. + * + * @throws SocketException If this instance is unable to bind to the default + * receive port. + */ + public XPlaneConnect() throws SocketException { + this(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class with the + * specified timeout using default ports and + * assuming X-Plane is running on the local machine. + * + * @param timeout The time, in milliseconds, after which read attempts will + * timeout. + * @throws SocketException If this instance is unable to bind to the default + * receive port. + */ + public XPlaneConnect(int timeout) throws SocketException { + this.socket = new DatagramSocket(0); + this.xplaneAddr = InetAddress.getLoopbackAddress(); + this.xplanePort = 49009; + this.socket.setSoTimeout(timeout); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the + * specified ports and X-Plane host. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The local port to use when sending and receiving data from XPC. + * @throws java.net.SocketException If this instance is unable to bind to + * the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be + * resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port) + throws java.net.SocketException, java.net.UnknownHostException { + this(xpHost, xpPort, port, 100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class from a received + * discovery Beacon + * + * @param beacon The beacon received from {@code XPlaneConnectDiscovery} + * @throws SocketException If this instance is unable to bind to the specified + * port. + */ + public XPlaneConnect(Beacon beacon) throws SocketException { + this.socket = new DatagramSocket(0); + this.xplaneAddr = beacon.getXplaneAddress(); + this.xplanePort = beacon.getPluginPort(); + this.socket.setSoTimeout(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the + * specified ports, hostname, and timeout. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The port on which the X-Plane Connect plugin is sending data. + * @param timeout The time, in milliseconds, after which read attempts will + * timeout. + * @throws java.net.SocketException If this instance is unable to bind to + * the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be + * resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port, int timeout) + throws java.net.SocketException, java.net.UnknownHostException { + this.socket = new DatagramSocket(port); + this.xplaneAddr = InetAddress.getByName(xpHost); + this.xplanePort = xpPort; + this.socket.setSoTimeout(timeout); + } + + /** + * Closes the underlying socket. + */ + public void close() { + if (socket != null) { + socket.close(); + socket = null; + } + } + + /** + * Read data from the X-Plane plugin. This method will read whatever data is + * available and return it. + * + * @return The data send from X-Plane. + * @throws IOException If the read operation fails + */ + private byte[] readUDP() throws IOException { + byte[] buffer = new byte[65536]; + DatagramPacket packet = new DatagramPacket(buffer, buffer.length); + try { + socket.receive(packet); + return Arrays.copyOf(buffer, packet.getLength()); + } catch (SocketTimeoutException ex) { + return new byte[0]; + } + } + + /** + * Send the given data to the X-Plane plugin. + * + * @param buffer The data to send. + * @throws IOException If the send operation fails. + */ + private void sendUDP(byte[] buffer) throws IOException { + DatagramPacket packet = new DatagramPacket(buffer, buffer.length, xplaneAddr, xplanePort); + socket.send(packet); + } + + /** + * Pauses or unpauses X-Plane. + * + * @param pause {@code true} to pause the simulator; {@code false} to un-pause. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(boolean pause) throws IOException { + // S I M U LEN VAL + byte[] msg = { 0x53, 0x49, 0x4D, 0x55, 0x00, 0x00 }; + msg[5] = (byte) (pause ? 0x01 : 0x00); + sendUDP(msg); + } + + /** + * Pauses, unpauses, or switches the pause state of X-Plane. + * + * @param pause {@code 1} to pause the simulator, {@code 0} to unpause, or + * {@code 2} to switch. + * @throws IllegalArgumentException If the values of {@code pause} is not a + * valid command. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(int pause) throws IOException { + if (pause < 0 || (pause > 2 && pause < 100) || (pause > 119 && pause < 200) || pause > 219) { + throw new IllegalArgumentException("pause must be a value in the range [0, 2], [100, 119], or [200, 219]."); + } + + // S I M U LEN VAL + byte[] msg = { 0x53, 0x49, 0x4D, 0x55, 0x00, 0x00 }; + msg[5] = (byte) pause; + sendUDP(msg); + } + + /** + * Requests a single dref value from X-Plane. + * + * @param dref The name of the dref requested. + * @return A byte array representing data dependent on the dref requested. + * @throws IOException If either the request or the response fails. + */ + public float[] getDREF(String dref) throws IOException { + return getDREFs(new String[] { dref })[0]; + } + + /** + * Requests several dref values from X-Plane. + * + * @param drefs An array of dref names to request. + * @return A multidimensional array representing the data for each requested + * dref. + * @throws IOException If either the request or the response fails. + */ + public float[][] getDREFs(String[] drefs) throws IOException { + // Preconditions + if (drefs == null || drefs.length == 0) { + throw new IllegalArgumentException("drefs must be a valid array with at least one dref."); + } + if (drefs.length > 255) { + throw new IllegalArgumentException("Can not request more than 255 DREFs at once."); + } + + // Convert drefs to bytes. + byte[][] drefBytes = new byte[drefs.length][]; + for (int i = 0; i < drefs.length; ++i) { + drefBytes[i] = drefs[i].getBytes(StandardCharsets.UTF_8); + if (drefBytes[i].length == 0) { + throw new IllegalArgumentException("DREF " + i + " is an empty string!"); + } + if (drefBytes[i].length > 255) { + throw new IllegalArgumentException("DREF " + i + + " is too long (must be less than 255 bytes in UTF-8). Are you sure this is a valid DREF?"); + } + } + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETD".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(drefs.length); + for (byte[] dref : drefBytes) { + os.write(dref.length); + os.write(dref, 0, dref.length); + } + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if (data.length == 0) { + throw new IOException("No response received."); + } + if (data.length < 6) { + throw new IOException("Response too short"); + } + float[][] result = new float[drefs.length][]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + int cur = 6; + for (int j = 0; j < result.length; ++j) { + result[j] = new float[data[cur++]]; + for (int k = 0; k < result[j].length; ++k) // TODO: There must be a better way to do this + { + result[j][k] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + public void sendDREF(String dref, float value) throws IOException { + sendDREF(dref, new float[] { value }); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param dref The name of the X-Plane dataref to set. + * @param value An array of floating point values whose structure depends on the + * dref specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREF(String dref, float[] value) throws IOException { + sendDREFs(new String[] { dref }, new float[][] { value }); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param drefs The names of the X-Plane datarefs to set. + * @param values A sequence of arrays of floating point values whose structure + * depends on the drefs specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREFs(String[] drefs, float[][] values) throws IOException { + // Preconditions + if (drefs == null || drefs.length == 0) { + throw new IllegalArgumentException(("drefs must be non-empty.")); + } + if (values == null || values.length != drefs.length) { + throw new IllegalArgumentException("values must be of the same size as drefs."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DREF".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + for (int i = 0; i < drefs.length; ++i) { + String dref = drefs[i]; + float[] value = values[i]; + + if (dref == null) { + throw new IllegalArgumentException("dref must be a valid string."); + } + if (value == null || value.length == 0) { + throw new IllegalArgumentException("value must be non-null and should contain at least one value."); + } + + // Convert drefs to bytes. + byte[] drefBytes = dref.getBytes(StandardCharsets.UTF_8); + if (drefBytes.length == 0) { + throw new IllegalArgumentException("DREF is an empty string!"); + } + if (drefBytes.length > 255) { + throw new IllegalArgumentException( + "dref must be less than 255 bytes in UTF-8. Are you sure this is a valid dref?"); + } + + ByteBuffer bb = ByteBuffer.allocate(4 * value.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int j = 0; j < value.length; ++j) { + bb.putFloat(j * 4, value[j]); + } + + // Build and send message + os.write(drefBytes.length); + os.write(drefBytes, 0, drefBytes.length); + os.write(value.length); + os.write(bb.array()); + } + sendUDP(os.toByteArray()); + } + + /** + * Gets the control surface information for the specified airplane. + * + * @param ac The aircraft to get control surface information for. + * @return An array containing control surface data in the same format as + * {@code sendCTRL}. + * @throws IOException If the command cannot be sent or a response cannot be + * read. + */ + public float[] getCTRL(int ac) throws IOException { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETC".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if (data.length == 0) { + throw new IOException("No response received."); + } + if (data.length < 31) { + throw new IOException("Response too short"); + } + + // Parse response + float[] result = new float[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + result[0] = bb.getFloat(5); + result[1] = bb.getFloat(9); + result[2] = bb.getFloat(13); + result[3] = bb.getFloat(17); + result[4] = bb.get(21); + result[5] = bb.getFloat(22); + result[6] = bb.getFloat(27); + return result; + } + + /** + * Sends command to X-Plane setting control surfaces on the player ac. + * + * @param values + *

+ * An array containing zero to six values representing control + * surface data as follows: + *

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing + * elements will not be changed. To + * change values in the middle of the array without affecting the + * preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values) throws IOException { + sendCTRL(values, 0); + } + + /** + * Sends command to X-Plane setting control surfaces on the specified ac. + * + * @param values + *

+ * An array containing zero to six values representing control + * surface data as follows: + *

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing + * elements will not be changed. To + * change values in the middle of the array without affecting the + * preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player's ac. + * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values, int ac) throws IOException { + // Preconditions + if (values == null) { + throw new IllegalArgumentException("ctrl must no be null."); + } + if (values.length > 7) { + throw new IllegalArgumentException("ctrl must have 7 or fewer elements."); + } + if (ac < 0 || ac > 9) { + throw new IllegalArgumentException("ac must be non-negative and less than 9."); + } + + // Pad command values and convert to bytes + int i; + int cur = 0; + ByteBuffer bb = ByteBuffer.allocate(26); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (i = 0; i < 6; ++i) { + if (i == 4) { + if (i >= values.length) { + bb.put(cur, (byte) -1); + } else { + bb.put(cur, (byte) values[i]); + } + cur += 1; + } else if (i >= values.length) { + bb.putFloat(cur, -998); + cur += 4; + } else { + bb.putFloat(cur, values[i]); + cur += 4; + } + } + bb.put(cur++, (byte) ac); + bb.putFloat(cur, values.length == 7 ? values[6] : -998); + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CTRL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Gets position information for the specified airplane. + * + * @param ac The aircraft to get position information for. + * @return An array containing control surface data in the same format as + * {@code sendPOSI}. + * @throws IOException If the command cannot be sent or a response cannot be + * read. + */ + public double[] getPOSI(int ac) throws IOException { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETP".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if (data.length == 0) { + throw new IOException("No response received."); + } + if (data.length < 34) { + throw new IOException("Response too short"); + } + + // Parse response + double[] result = new double[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int i = 0; i < 7; ++i) { + result[i] = bb.getFloat(6 + 4 * i); + } + return result; + } + + /** + * Sets the position of the player ac. + * + * @param values + *

+ * An array containing position elements as follows: + *

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing + * elements will not be changed. To + * change values in the middle of the array without affecting the + * preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values) throws IOException { + sendPOSI(values, 0); + } + + /** + * Sets the position of the specified ac with double precision coordinates. + * + * @param values + *

+ * An array containing position elements as follows: + *

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing + * elements will not be changed. To + * change values in the middle of the array without affecting the + * preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player ac. + * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values, int ac) throws IOException { + // Preconditions + if (values == null) { + throw new IllegalArgumentException("posi must no be null."); + } + if (values.length > 7) { + throw new IllegalArgumentException("posi must have 7 or fewer elements."); + } + if (ac < 0 || ac > 255) { + throw new IllegalArgumentException("ac must be between 0 and 255."); + } + + // Pad command values and convert to bytes + int i; + ByteBuffer bb = ByteBuffer.allocate(40); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (i = 0; i < values.length; ++i) { + if (i < 3) /* lat/lon/height as double */ + { + bb.putDouble(values[i]); + } else { + bb.putFloat((float) values[i]); + } + } + for (; i < 7; ++i) { + bb.putFloat(-998); + } + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("POSI".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(ac); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Reads X-Plane data + * + * @return The data read. + * @throws IOException If the read operation fails. + */ + public float[][] readData() throws IOException { + byte[] buffer = readUDP(); + ByteBuffer bb = ByteBuffer.wrap(buffer); + int cur = 5; + int len = bb.get(cur++); + float[][] result = new float[bb.get(len)][9]; + for (int i = 0; i < len; ++i) { + for (int j = 0; j < 9; ++j) { + result[i][j] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + /** + * Sends data to X-Plane + * + * @param data The data to send. + * @throws IOException If the command cannot be sent. + */ + public void sendDATA(float[][] data) throws IOException { + // Preconditions + if (data == null || data.length == 0) { + throw new IllegalArgumentException("data must be a non-null, non-empty array."); + } + + // Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * 9 * data.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int i = 0; i < data.length; ++i) { + int rowStart = 9 * 4 * i; + float[] row = data[i]; + if (row.length != 9) { + throw new IllegalArgumentException("Rows must contain exactly 9 items. (Row " + i + ")"); + } + + bb.putInt(rowStart, (int) row[0]); + for (int j = 1; j < row.length; ++j) { + bb.putFloat(rowStart + 4 * j, row[j]); + } + } + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DATA".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Selects what data X-Plane will export over UDP. + * + * @param rows The row numbers to select. + * @throws IOException If the command cannot be sent. + */ + public void selectDATA(int[] rows) throws IOException { + // Preconditions + if (rows == null || rows.length == 0) { + throw new IllegalArgumentException("rows must be a non-null, non-empty array."); + } + + // Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * rows.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int i = 0; i < rows.length; ++i) { + bb.putInt(i * 4, rows[i]); + } + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DSEL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the default screen + * location. + * + * @param msg The message to display. Should not contain any newline characters. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg) throws IOException { + sendTEXT(msg, -1, -1); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the specified + * coordinates. + * + * @param msg The message to display. Should not contain any newline characters. + * @param x The number of pixels from the right edge of the screen to display + * the text. + * @param y The number of pixels from the bottom edge of the screen to display + * the text. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg, int x, int y) throws IOException { + // Preconditions + if (msg == null) { + msg = ""; + } + + // Convert drefs to bytes. + byte[] msgBytes = msg.getBytes(StandardCharsets.UTF_8); + if (msgBytes.length > 255) { + throw new IllegalArgumentException("msg must be less than 255 bytes in UTF-8."); + } + + ByteBuffer bb = ByteBuffer.allocate(8); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(0, x); + bb.putInt(4, y); + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("TEXT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(bb.array()); + os.write(msgBytes.length); + os.write(msgBytes); + sendUDP(os.toByteArray()); + } + + /** + * Sets the camera view in X-Plane. + * + * @param view The view to use. + * @throws IOException If the command cannot be sent. + */ + public void sendVIEW(ViewType view) throws IOException { + ByteBuffer bb = ByteBuffer.allocate(4); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(view.getValue()); + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("VIEW".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Adds, removes, or clears a set of waypoints. If the command is clear, the + * points are ignored + * and all points are removed. + * + * @param op The operation to perform. + * @param points An array of values representing points. Each triplet in the + * array will be + * interpreted as a (Lat, Lon, Alt) point. + * @throws IOException If the command cannot be sent. + */ + public void sendWYPT(WaypointOp op, float[] points) throws IOException { + // Preconditions + if (points.length % 3 != 0) { + throw new IllegalArgumentException("points.length should be divisible by 3."); + } + if (points.length / 3 > 255) { + throw new IllegalArgumentException("Too many points. Must be less than 256."); + } + + // Convert points to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * points.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (float f : points) { + bb.putFloat(f); + } + + // Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("WYPT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write(op.getValue()); + os.write(points.length / 3); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Send a command to X-Plane. + * + * @param comm The name of the X-Plane command to send. + * @throws IOException If the command cannot be sent. + */ + public void sendCOMM(String comm) throws IOException { + // Preconditions + if (comm == null || comm.length() == 0) { + throw new IllegalArgumentException(("comm must be non-empty.")); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("COMM".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + + // Convert comm to bytes. + byte[] commBytes = comm.getBytes(StandardCharsets.UTF_8); + if (commBytes.length == 0) { + throw new IllegalArgumentException("COMM is an empty string!"); + } + if (commBytes.length > 255) { + throw new IllegalArgumentException( + "comm must be less than 255 bytes in UTF-8. Are you sure this is a valid comm?"); + } + + // Build and send message + os.write(commBytes.length); + os.write(commBytes); + sendUDP(os.toByteArray()); + } + + /** + * Sets the port on which the client will receive data from X-Plane. + * + * @param port The new incoming port number. + * @throws IOException If the command cannot be sent. + */ + public void setCONN(int port) throws IOException { + if (port < 0 || port >= 0xFFFF) { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CONN".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); // Placeholder for message length + os.write((byte) port); + os.write((byte) (port >> 8)); + sendUDP(os.toByteArray()); + + int soTimeout = socket.getSoTimeout(); + socket.close(); + socket = new DatagramSocket(port); + socket.setSoTimeout(soTimeout); + readUDP(); // Try to read response + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Main.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Main.java new file mode 100644 index 0000000..f69fdb8 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Main.java @@ -0,0 +1,57 @@ + +import javax.swing.*; + +import CognitiveModel.ModelFiles.*; +import Visualizer.Screen; +import Visualizer.ScreenFrame; +import Visualizer.ScreenManager; + +import java.awt.*; + +public class Main { + public static void main(String[] args) { + + // Encapsulation (or lack thereof) Test +// Model m = new Model(); +// testprocess1 tp1 = new testprocess1(m, null); +// tp1.runProcess(); + + + //Toolkit.getDefaultToolkit().setDynamicLayout(true); + + JLabel t1 = new JLabel("t1"); + JLabel t2 = new JLabel("t2"); + JLabel t3 = new JLabel("t3"); + JLabel t4 = new JLabel("t4"); + + Screen s1 = new Screen(new GridLayout(1,2)); + s1.add(t1); + s1.add(t2); + Screen s2 = new Screen(new GridLayout(1,2)); + s2.add(t3); + s2.add(t4); + ScreenManager m = new ScreenManager(s1,s2); + Dimension d = new Dimension(500,500); + ScreenFrame f = new ScreenFrame(m,d); + f.initialize(); + while (true) { + f.repaint(); + } + + + + +// testprocess2 tp2 = new testprocess2(m, null); +// tp2.runProcess(); + +// for (int i = 1; i<10; i++) { +// if (i%2 == 0) { +// int t = 0; +// } else if(i == 9) { +// System.out.println("Breaking now"); +// break; +// } +// } + + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/compiler.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/compiler.xml new file mode 100644 index 0000000..96cc43e --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/compiler.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/copyright/profiles_settings.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/copyright/profiles_settings.xml new file mode 100644 index 0000000..e7bedf3 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/copyright/profiles_settings.xml @@ -0,0 +1,3 @@ + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/libraries/Java.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/libraries/Java.xml new file mode 100644 index 0000000..154988b --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/libraries/Java.xml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/misc.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/misc.xml new file mode 100644 index 0000000..5a65e9a --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/misc.xml @@ -0,0 +1,12 @@ + + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/modules.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/modules.xml new file mode 100644 index 0000000..7843b1c --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/vcs.xml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/vcs.xml new file mode 100644 index 0000000..6564d52 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/BasicOperation.iml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/BasicOperation.iml new file mode 100644 index 0000000..ab60ab0 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/BasicOperation.iml @@ -0,0 +1,12 @@ + + + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Rudder Pedals.png b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Rudder Pedals.png new file mode 100644 index 0000000..0db4762 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Rudder Pedals.png differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Yoke Symbol.png b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Yoke Symbol.png new file mode 100644 index 0000000..cc7e4c9 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/content/Yoke Symbol.png differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/Main1.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/Main1.java new file mode 100644 index 0000000..4808f3b --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/Main1.java @@ -0,0 +1,632 @@ + +// +//import ModelFiles.*; +// +//import java.io.BufferedWriter; +//import java.io.File; +//import java.io.FileWriter; +//import java.io.IOException; +//import java.net.SocketException; +//import java.util.Arrays; +//import javax.swing.*; +//import javax.swing.border.Border; +//import javax.imageio.ImageIO; +//import java.awt.Graphics; +//import java.awt.image.BufferedImage; +// +//import java.awt.*; +// +///** +// * An example program demonstrating the basic features of the X-Plane Connect toolbox. +// * +// * @author Jason Watkins +// * @version 1.0 +// * @since 2015-04-06 +// */ +//public class Main +//{ +// public static void main(String[] args) { +// System.out.println("X-Plane Connect example program"); +// System.out.println("Setting up simulation..."); +// JFrame frame = new JFrame(); +// +// try(XPlaneConnect xpc = new XPlaneConnect()) +// { +// // Ensure connection established. +// xpc.getDREF("sim/test/test_float"); +// +// // System.out.println("Setting player aircraft position"); +// // double[] posi = new double[] {37.524, -122.06899, 2500, 0, 0, 0, 1}; +// // xpc.sendPOSI(posi); +// +// // System.out.println("Setting another aircraft position"); +// // posi[0] = 37.52465; +// // posi[4] = 20; +// // xpc.sendPOSI(posi, 1); +// +// System.out.println("Setting rates"); +// float[][] data = new float[3][9]; +// for(float[] row : data) +// { +// Arrays.fill(row, -998); +// } +// data[0][0] = 0; //Alpha +// data[0][1] = 0; +// data[0][3] = 0; +// +// data[1][0] = 0; //Velocity +// data[1][1] = 0; +// data[1][2] = 0; +// data[1][3] = 0; +// data[1][4] = 0; +// +// data[2][0] = 0; //PQR +// data[2][1] = 0; +// data[2][2] = 0; +// data[2][3] = 0; +// +// xpc.sendDATA(data); +// +// System.out.println("Trying something new!!"); +// +// +// frame.setPreferredSize(new Dimension(1700,270)); +// frame.setLayout(new GridLayout(1,2)); +// frame.setVisible(true); +// +// JPanel display = new JPanel(); +// display.setPreferredSize(new Dimension(100,100)); +// display.setLayout(new GridLayout(2,4)); +// +// Font fontTitles = new Font("Impact", 1,40); +// Font fontData = new Font("Monospaced", 1,30); +// JLabel titleOne = new JLabel("Elevator"); +// titleOne.setFont(fontTitles); +// titleOne.setHorizontalAlignment(SwingConstants.CENTER); +// titleOne.setVerticalAlignment(SwingConstants.BOTTOM); +// JLabel titleTwo = new JLabel("Roll"); +// titleTwo.setFont(fontTitles); +// titleTwo.setHorizontalAlignment(SwingConstants.CENTER); +// titleTwo.setVerticalAlignment(SwingConstants.BOTTOM); +// JLabel titleThree = new JLabel("Yaw"); +// titleThree.setFont(fontTitles); +// titleThree.setHorizontalAlignment(SwingConstants.CENTER); +// titleThree.setVerticalAlignment(SwingConstants.BOTTOM); +// JLabel titleFour = new JLabel("Throttle"); +// titleFour.setFont(fontTitles); +// titleFour.setHorizontalAlignment(SwingConstants.CENTER); +// titleFour.setVerticalAlignment(SwingConstants.BOTTOM); +// JLabel one = new JLabel(); +// one.setFont(fontData); +// one.setHorizontalAlignment(SwingConstants.CENTER); +// one.setVerticalAlignment(SwingConstants.TOP); +// JLabel two = new JLabel(); +// two.setFont(fontData); +// two.setHorizontalAlignment(SwingConstants.CENTER); +// two.setVerticalAlignment(SwingConstants.TOP); +// JLabel three = new JLabel(); +// three.setFont(fontData); +// three.setHorizontalAlignment(SwingConstants.CENTER); +// three.setVerticalAlignment(SwingConstants.TOP); +// JLabel four = new JLabel(); +// four.setFont(fontData); +// four.setHorizontalAlignment(SwingConstants.CENTER); +// four.setVerticalAlignment(SwingConstants.TOP); +// +// one.setText("Test"); +// two.setText("Test"); +// three.setText("Test"); +// four.setText("Test"); +// display.add(titleOne); +// display.add(titleTwo); +// display.add(titleThree); +// display.add(titleFour); +// display.add(one); +// display.add(two); +// display.add(three); +// display.add(four); +// +// JPanel visualizer = new JPanel(); +// visualizer.setLayout(new GridLayout(2,1)); +// +// +// //Col 1 of Visualizer +// JPanel yokeGrid = new JPanel(); +// yokeGrid.setMinimumSize(new Dimension(100,100)); +// //grid.setOpaque(true); +// // grid.setLayout(null); +// yokeGrid.setBackground(Color.black); +// yokeGrid.setVisible(true); +// Integer layer1 = 0; +// Integer layer2 = 1; +// // grid.setLayout(new GridLayout(1,1)); +// yokeGrid.setLayout(new OverlayLayout(yokeGrid)); +// +// yokePosition yoke = new yokePosition(yokeGrid.getWidth(), yokeGrid.getHeight()); +// // yaw yaw = new yaw(grid.getWidth(), grid.getHeight()); +// axis axis = new axis(yokeGrid.getWidth(), yokeGrid.getHeight()); +// +// // grid.setLayer(axis, layer1); +// yokeGrid.add(axis); +// yokeGrid.add(yoke); +// // grid.add(yaw); +// // grid.setLayer(yoke, layer2); +// +// Border greenLine = BorderFactory.createLineBorder(Color.green); +// yokeGrid.setBorder(greenLine); +// +// visualizer.add(yokeGrid); +// +// +// //Row 2 of Visualizer +// //Rudder Vizualizer +// rudderPosition rudderGrid = new rudderPosition(yokeGrid.getWidth(), 0); +// visualizer.add(rudderGrid); +// +// +// +// +// frame.add(display); // Left Side +// frame.add(visualizer); // Right Side +// frame.pack(); +// +// // JLabel text = new JLabel("Hello"); +// // JLabel text2 = new JLabel("Hello"); +// // JPanel display = new JPanel(); +// // display.setLayout(new GridLayout()); +// // display.setPreferredSize(size); +// // display.add(text); +// // display.add(text2); +// +// // container.add(display); +// // container.pack(); +// +// +// +// +// int aircraft = 0; +// boolean takeoff = true; +// boolean climb = false; +// boolean cruise = false; +// boolean throttleFull = false; +// boolean brakeOff = false; +// boolean switchTrack = false; +// String dref = "sim/cockpit2/gauges/indicators/airspeed_kts_pilot"; +// String dref2 = "sim/flightmodel/position/true_phi"; +// String drefHDG = "sim/cockpit2/gauges/indicators/heading_AHARS_deg_mag_pilot"; +// String drefHDGBug = "sim/cockpit/autopilot/heading_mag"; +// String drefAltitude = "sim/cockpit2/gauges/indicators/altitude_ft_pilot"; +// +// File file = new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/src/output"); +// if (!file.exists()) { +// file.createNewFile(); +// } +// FileWriter fw = new FileWriter(file, true); +// BufferedWriter bw = new BufferedWriter(fw); +// +// while(true) { +// //THE GETTERS +// double[] posi1 = xpc.getPOSI(aircraft); // FIXME: change this to 64-bit double +// float[] ctrl1 = xpc.getCTRL(aircraft); +// float[] value = xpc.getDREF(dref); +// float[] value2 = xpc.getDREF(dref2); +// float[] valueHDG = xpc.getDREF(drefHDG); +// float[] valueHDGBug = xpc.getDREF(drefHDGBug); +// float[] valueAltitude = xpc.getDREF(drefAltitude); +// float bugged = 50; +// float rwyHDG = valueHDGBug[0]; +// /* +// * Outputs +// */ +// // System.out.format("\r[Elevator: %2f] [Roll: %2f] [Yaw: %2f] ---- [Throttle:%2f] ---- [Flaps: %2f] -- [Data Ref: %2f] -- [T/O: %b ][Cruise: %b ]", +// // ctrl1[0], ctrl1[1], ctrl1[2], ctrl1[3], ctrl1[5], valueAltitude[0], takeoff, cruise); +// String log = String.format("[Elevator: %2f] [Roll: %2f] [Yaw: %2f] [Throttle:%2f] [Flaps: %2f] [Data Ref: %2f] [T/O: %b ][Cruise: %b ]", +// ctrl1[0], ctrl1[1], ctrl1[2], ctrl1[3], ctrl1[5], valueAltitude[0], takeoff, cruise); +// +// one.setText(String.valueOf(ctrl1[0])); +// if(ctrl1[0] >= 0 ) { +// one.setForeground(Color.green); +// } else { +// one.setForeground(Color.red); +// } +// two.setText(String.valueOf(ctrl1[1])); +// if(ctrl1[1] >= 0 ) { +// two.setForeground(Color.green); +// } else { +// two.setForeground(Color.red); +// } +// three.setText(String.valueOf(ctrl1[2])); +// if(ctrl1[2] >= 0 ) { +// three.setForeground(Color.green); +// } else { +// three.setForeground(Color.red); +// } +// four.setText(String.valueOf(ctrl1[3])); +// if(ctrl1[3] >= 0 ) { +// four.setForeground(Color.green); +// } else { +// four.setForeground(Color.red); +// } +// +// yoke.setXBound(yokeGrid.getWidth()); +// yoke.setYBound(yokeGrid.getHeight()); +// yoke.setX(ctrl1[1]); +// yoke.setY(ctrl1[0]); +// yoke.repaint(); +// +// rudderGrid.setXBound(yokeGrid.getWidth()); +// rudderGrid.setYBound(yokeGrid.getHeight()); +// rudderGrid.setX(ctrl1[2]); +// rudderGrid.repaint(); +// +// +// +// // yaw.setYBound(grid.getHeight()); +// // yaw.setYBound(grid.getHeight()); +// // yaw.setX(ctrl1[2]); +// // yaw.repaint(); +// +// axis.setXBound(yokeGrid.getWidth()); +// axis.setYBound(yokeGrid.getHeight()); +// axis.repaint(); +// +// //Writing Data to a File +// try { +// bw.write(log + "\n"); +// bw.flush(); +// } catch (IOException e) { +// System.out.println("Log Data Failed"); +// } +// /* +// * Flight Controls +// */ +// // //Basic Autopilot For Roll (based on yoke position) +// // float[] rollRight = {-998.0f, ctrl1[1]-(ctrl1[1]/2)}; +// // float[] rollLeft = {-998.0f, ctrl1[1]-(ctrl1[1]/2)}; +// // if(ctrl1[1] < 0) { +// // xpc.sendCTRL(rollRight); +// // } else if(ctrl1[1] > 0) { +// // xpc.sendCTRL(rollLeft); +// // } +// +// //Basic Autopilot For Pitch (based on VSI) +// // float[] pitchUp = {ctrl1[0] + 0.01f}; +// // float[] pitchDown = {ctrl1[0]- 0.01f}; +// // if(value[0] < 0) { +// // xpc.sendCTRL(pitchUp); +// // } else if(value[0] > 0) { +// // xpc.sendCTRL(pitchDown); +// // } +// +// +// +// if(valueAltitude[0] > 1000f && !switchTrack && takeoff == true) { +// System.out.println("In switch"); +// takeoff = false; +// cruise = true; +// switchTrack = true; +// } else if (valueAltitude[0] < 1000f && switchTrack && takeoff == true) { +// takeoff = true; +// cruise = false; +// switchTrack = false; +// } +// +// +// //Control Profiles +// if(takeoff) { +// float[] fullThrottle = {-998.0f, -998.0f, -998.0f, 1f}; +// if(!throttleFull) { +// xpc.sendCTRL(fullThrottle); +// throttleFull = true; +// } +// +// if(throttleFull && !brakeOff) { +// String parkingBrake = "sim/cockpit2/controls/parking_brake_ratio"; +// xpc.sendDREF(parkingBrake, 0f); +// brakeOff = true; +// } +// +// //Takeoff Pitch Control +// float[] pitchUp = {ctrl1[0] + 0.01f}; +// if(value[0] > bugged) { +// if(ctrl1[0] < 0.1f){ +// xpc.sendCTRL(pitchUp); +// } +// } +// +// //Takeoff Roll Control +// float[] rollRight = {-998.0f, ctrl1[1] + 0.01f}; +// float[] rollLeft = {-998.0f, ctrl1[1] - 0.01f}; +// if(value2[0] < 0 && value[0] > bugged) { +// if(ctrl1[1] < 0.15f) { +// xpc.sendCTRL(rollRight); +// } +// +// } else if(value2[0] > 0 && value[0] > bugged) { +// if(ctrl1[1] > -0.15f) { +// xpc.sendCTRL(rollLeft); +// } +// } +// +// //Takeoff Rudder Control  +// float[] yawRight = {-998.0f, -998.0f, ctrl1[2] + 0.03f}; +// float[] yawLeft = {-998.0f, -998.0f, ctrl1[2] - 0.03f}; +// if(valueHDG[0] < rwyHDG && value[0] > 0) { +// +// if(ctrl1[2] < 0.5f) { +// xpc.sendCTRL(yawRight); // YAW RIGHT +// } +// +// } else if(valueHDG[0] > rwyHDG && value[0] > 0) { +// if(ctrl1[2] > -0.5f){ +// xpc.sendCTRL(yawLeft); // YAW LEFT +// } +// } +// } +// +// +// if(cruise) { +// //Basic Autopilot For Roll (based on bank angle) +// float[] rollRight = {-998.0f, ctrl1[1] + 0.01f}; +// float[] rollLeft = {-998.0f, ctrl1[1] - 0.01f}; +// if(value2[0] < 0) { +// +// if(ctrl1[1] < 0.15f) { +// xpc.sendCTRL(rollRight); +// } +// +// } else if(value2[0] > 0) { +// if(ctrl1[1] > -0.15f) { +// xpc.sendCTRL(rollLeft); +// } +// } +// +// //Basic Autopilot For Pitch (based on speed) +// float[] pitchUp = {ctrl1[0] + 0.01f}; +// float[] pitchDown = {ctrl1[0]- 0.01f}; +// +// if(value[0] > bugged+25) { +// if(ctrl1[0] < 0.2f) { +// xpc.sendCTRL(pitchUp); +// } +// } else if(value[0] < bugged+25) { +// if(ctrl1[0] > -0.2f) { +// xpc.sendCTRL(pitchDown); +// } +// } +// +// } +// +// try { +// Thread.sleep(0); +// } +// catch (InterruptedException ex) {} +// +// if (System.in.available() > 0) { +// break; +// } +// } +// +// // System.out.println("Setting controls"); +// // float[] ctrl = new float[4]; +// // ctrl[3] = 0.8F; +// // xpc.sendCTRL(ctrl); +// +// // System.out.println("Pausing sim"); +// // xpc.pauseSim(true); +// // try { Thread.sleep(5000); } catch (InterruptedException ex) {} +// // System.out.println("Un-pausing"); +// // xpc.pauseSim(false); +// +// System.out.println("Example complete"); +// +// } +// catch (SocketException ex) +// { +// System.out.println("Unable to set up the connection. (Error message was '" + ex.getMessage() + "'.)"); +// } +// catch (IOException ex) +// { +// System.out.println("Something went wrong with one of the commands. (Error message was '" + ex.getMessage() + "'.)"); +// frame.dispose(); +// +// } +// System.out.println("Exiting"); +// } +// +// +// //Helper Methods +// // public static void logData (BufferedWriter bw, String log) { +// // bw.write(log); +// // } +//} +// +//class axis extends JComponent { +// +// int xBound = 0; +// int yBound = 0; +// +// axis(int currentX, int currentY) { +// xBound = currentX; +// yBound = currentY; +// } +// +// public void paint(Graphics g) +// { +// Graphics2D g2 = (Graphics2D) g; +// g2.setColor(Color.green); +// g2.drawLine(xBound/2, 0, xBound/2, yBound); +// g2.drawLine(0, yBound/2, xBound, yBound/2); +// } +// +// public void setXBound(int newX){ +// this.xBound = newX; +// } +// +// public void setYBound(int newY){ +// this.yBound = newY; +// } +//} +// +// +// +//// class yaw extends JComponent { +// +//// int xBound; +//// int yBound; +//// float x = 0; +// +// +//// int currX = (int)(x*xBound) + xBound/2; +// +//// yaw(int currentX, int currentY) { +//// xBound = currentX; +//// yBound = currentY; +//// } +// +//// public void paint(Graphics g) +//// { +//// Graphics2D g2 = (Graphics2D) g; +//// g2.setColor(Color.blue); +//// g2.drawLine(currX, 0, currX, yBound); +//// g2.fillOval(currX, yBound/2, 20, 20); +//// } +// +//// public void setXBound(int newX){ +//// this.xBound = newX; +//// } +// +//// public void setYBound(int newY){ +//// this.yBound = newY; +//// } +// +//// public void setX(float newX){ +//// this.x = newX; +//// } +//// } +// +// +// +// +// +// +// +// +// +// +//class yokePosition extends JComponent { +// float x = 0; +// int xBound = 0; +// float y = 0; +// int yBound = 0; +// +// int width = 50; +// int height = 50; +// +// yokePosition(int currentX, int currentY) { +// xBound = currentX; +// yBound = currentY; +// } +// +// yokePosition() { +// +// } +// +// public void paint(Graphics g) +// { +// Graphics2D g2 = (Graphics2D) g; +// +// try { +// final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/content/Yoke Symbol.png")); +// Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); +// +// g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); +// } catch (IOException e){ +// System.out.print("Rudder Image Failed"); +// } +// +// g2.setColor(Color.red); +// int currX = (int)(x*xBound) + xBound/2 - width/2; +// int currY = (int)(y*yBound) + yBound/2 - height/2; +// System.out.println("CurrX, CurrY: " + currX +", " + currY); +// // g2.drawOval(currX, currY, width, height); +// +// g2.fillOval(currX, currY, width, height); +// g.setColor(Color.green); +// int height = g.getFontMetrics().getHeight(); +// g.drawString("Nose Down", (xBound/2) + 5, height); +// g.drawString("Nose Up", (xBound/2) + 5, yBound - height/2); +// g.drawString("Roll Left",0, yBound/2); +// int width = g.getFontMetrics().stringWidth("Roll Right"); +// g.drawString("Roll Right", xBound - width, yBound/2); +// +// +// +// +// } +// +// public void setX(float newX){ +// this.x = newX; +// } +// +// public void setXBound(int newX){ +// this.xBound = newX; +// } +// +// public void setY(float newY){ +// this.y = newY; +// } +// public void setYBound(int newY){ +// this.yBound = newY; +// } +//} +// +// +//class rudderPosition extends JComponent { +// +// int xBound = 0; +// int yBound = 0; +// +// float rudderTravel = 0; +// +// rudderPosition(int currentXBound, int currentYBound) { +// xBound = currentXBound; +// yBound = currentYBound; +// } +// +// public void paint(Graphics g) { +// Graphics2D g2 = (Graphics2D) g; +// int spacer = 10; +// g.setColor(Color.gray); +// g2.fillRect(0, spacer, xBound, yBound - spacer); +// +// g2.setColor(Color.red); +// int width = (int) (xBound/2 * rudderTravel); +// //g2.drawRect(xBound/2, 0 +spacer, width, yBound); +// g2.fillRect(xBound/2, 0 + spacer, width, yBound); +// +// g.drawString("Yaw Left",0, yBound/2); +// int textWidth = g.getFontMetrics().stringWidth("Roll Right"); +// g.drawString("Yaw Right", xBound - textWidth, yBound/2); +// try { +// final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/Project_Models/Model-1/content/Rudder Pedals.png")); +// Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); +// g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); +// } catch (IOException e) { +// System.out.print("Rudder Image Failed"); +// } +// } +// +// public void setX(float newX) { +// this.rudderTravel = newX; +// } +// +// public void setXBound(int newX) { +// this.xBound = newX; +// } +// +// public void setYBound(int newY) { +// this.yBound = newY; +// } +// +//} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/XPlaneConnect.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/XPlaneConnect.java new file mode 100644 index 0000000..df32cff --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/XPlaneConnect.java @@ -0,0 +1,954 @@ +//NOTICES: +// Copyright (c) 2013-2018 United States Government as represented by the Administrator of the +// National Aeronautics and Space Administration. All Rights Reserved. +// +// DISCLAIMERS +// No Warranty: THE SUBJECT SOFTWARE IS PROVIDED "AS IS" WITHOUT ANY WARRANTY OF ANY KIND, +// EITHER EXPRESSED, IMPLIED, OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, ANY WARRANTY THAT THE +// SUBJECT SOFTWARE WILL CONFORM TO SPECIFICATIONS, ANY IMPLIED WARRANTIES OF MERCHANTABILITY, +// FITNESS FOR A PARTICULAR PURPOSE, OR FREEDOM FROM INFRINGEMENT, ANY WARRANTY THAT THE SUBJECT +// SOFTWARE WILL BE ERROR FREE, OR ANY WARRANTY THAT DOCUMENTATION, IF PROVIDED, WILL CONFORM TO +// THE SUBJECT SOFTWARE. THIS AGREEMENT DOES NOT, IN ANY MANNER, CONSTITUTE AN ENDORSEMENT BY +// GOVERNMENT AGENCY OR ANY PRIOR RECIPIENT OF ANY RESULTS, RESULTING DESIGNS, HARDWARE, +// SOFTWARE PRODUCTS OR ANY OTHER APPLICATIONS RESULTING FROM USE OF THE SUBJECT SOFTWARE. +// FURTHER, GOVERNMENT AGENCY DISCLAIMS ALL WARRANTIES AND LIABILITIES REGARDING THIRD-PARTY +// SOFTWARE, IF PRESENT IN THE ORIGINAL SOFTWARE, AND DISTRIBUTES IT "AS IS." +// +// Waiver and Indemnity: RECIPIENT AGREES TO WAIVE ANY AND ALL CLAIMS AGAINST THE UNITED STATES +// GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY PRIOR RECIPIENT. IF +// RECIPIENT'S USE OF THE SUBJECT SOFTWARE RESULTS IN ANY LIABILITIES, DEMANDS, DAMAGES, +// EXPENSES OR LOSSES ARISING FROM SUCH USE, INCLUDING ANY DAMAGES FROM PRODUCTS BASED ON, OR +// RESULTING FROM, RECIPIENT'S USE OF THE SUBJECT SOFTWARE, RECIPIENT SHALL INDEMNIFY AND HOLD +// HARMLESS THE UNITED STATES GOVERNMENT, ITS CONTRACTORS AND SUBCONTRACTORS, AS WELL AS ANY +// PRIOR RECIPIENT, TO THE EXTENT PERMITTED BY LAW. RECIPIENT'S SOLE REMEDY FOR ANY SUCH MATTER +// SHALL BE THE IMMEDIATE, UNILATERAL TERMINATION OF THIS AGREEMENT. + +package gov.nasa.xpc; + +import gov.nasa.xpc.discovery.Beacon; + +import java.io.ByteArrayOutputStream; +import java.io.IOException; +import java.lang.AutoCloseable; +import java.net.*; +import java.nio.ByteBuffer; +import java.nio.ByteOrder; +import java.nio.charset.StandardCharsets; +import java.util.Arrays; + +/** + * Represents a client that can connect to and interact with the X-Plane Connect plugin. + * + * @author Jason Watkins + * @version 0.1 + * @since 2015-03-31 + */ +public class XPlaneConnect implements AutoCloseable +{ + private static int clientNum; + private DatagramSocket socket; + private InetAddress xplaneAddr; + private int xplanePort; + + /** + * Gets the port on which the client receives data from the plugin. + * + * @return The incoming port number. + */ + public int getRecvPort() { return socket.getLocalPort(); } + + /** + * Gets the port on which the client sends data to X-Plane. + * + * @return The outgoing port number. + */ + public int getXPlanePort() { return xplanePort; } + + /** + * Sets the port on which the client sends data to X-Plane + * + * @param port The new outgoing port number. + * @throws IllegalArgumentException If {@code port} is not a valid port number. + */ + public void setXPlanePort(int port) + { + if(port < 0 || port >= 0xFFFF) + { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + xplanePort = port; + } + + /** + * Gets the hostname of the X-Plane host. + * + * @return The hostname of the X-Plane host. + */ + public String getXPlaneAddr() { return xplaneAddr.getHostAddress(); } + + /** + * Sets the hostname of the X-Plane host. + * + * @param host The new hostname of the X-Plane host machine. + * @throws UnknownHostException {@code host} is not valid. + */ + public void setXplaneAddr(String host) throws UnknownHostException + { + xplaneAddr = InetAddress.getByName(host); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using default ports and assuming X-Plane is running on the + * local machine. + * + * @throws SocketException If this instance is unable to bind to the default receive port. + */ + public XPlaneConnect() throws SocketException + { + this(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class with the specified timeout using default ports and + * assuming X-Plane is running on the local machine. + * + * @param timeout The time, in milliseconds, after which read attempts will timeout. + * @throws SocketException If this instance is unable to bind to the default receive port. + */ + public XPlaneConnect(int timeout) throws SocketException + { + this.socket = new DatagramSocket(0); + this.xplaneAddr = InetAddress.getLoopbackAddress(); + this.xplanePort = 49009; + this.socket.setSoTimeout(timeout); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the specified ports and X-Plane host. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The local port to use when sending and receiving data from XPC. + * @throws java.net.SocketException If this instance is unable to bind to the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port) + throws java.net.SocketException, java.net.UnknownHostException + { + this(xpHost, xpPort, port, 100); + } + + + /** + * Initializes a new instance of the {@code XPlaneConnect} class from a received discovery Beacon + * @param beacon The beacon received from {@code XPlaneConnectDiscovery} + * @throws SocketException If this instance is unable to bind to the specified port. + */ + public XPlaneConnect(Beacon beacon) throws SocketException { + this.socket = new DatagramSocket(0); + this.xplaneAddr = beacon.getXplaneAddress(); + this.xplanePort = beacon.getPluginPort(); + this.socket.setSoTimeout(100); + } + + /** + * Initializes a new instance of the {@code XPlaneConnect} class using the specified ports, hostname, and timeout. + * + * @param xpHost The network host on which X-Plane is running. + * @param xpPort The port on which the X-Plane Connect plugin is listening. + * @param port The port on which the X-Plane Connect plugin is sending data. + * @param timeout The time, in milliseconds, after which read attempts will timeout. + * @throws java.net.SocketException If this instance is unable to bind to the specified port. + * @throws java.net.UnknownHostException If the specified hostname can not be resolved. + */ + public XPlaneConnect(String xpHost, int xpPort, int port, int timeout) + throws java.net.SocketException, java.net.UnknownHostException + { + this.socket = new DatagramSocket(port); + this.xplaneAddr = InetAddress.getByName(xpHost); + this.xplanePort = xpPort; + this.socket.setSoTimeout(timeout); + } + + /** + * Closes the underlying socket. + */ + public void close() + { + if(socket != null) + { + socket.close(); + socket = null; + } + } + + /** + * Read data from the X-Plane plugin. This method will read whatever data is available and return it. + * + * @return The data send from X-Plane. + * @throws IOException If the read operation fails + */ + private byte[] readUDP() throws IOException + { + byte[] buffer = new byte[65536]; + DatagramPacket packet = new DatagramPacket(buffer, buffer.length); + try + { + socket.receive(packet); + return Arrays.copyOf(buffer, packet.getLength()); + } + catch (SocketTimeoutException ex) + { + return new byte[0]; + } + } + + /** + * Send the given data to the X-Plane plugin. + * + * @param buffer The data to send. + * @throws IOException If the send operation fails. + */ + private void sendUDP(byte[] buffer) throws IOException + { + DatagramPacket packet = new DatagramPacket(buffer, buffer.length, xplaneAddr, xplanePort); + socket.send(packet); + } + + /** + * Pauses or unpauses X-Plane. + * + * @param pause {@code true} to pause the simulator; {@code false} to un-pause. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(boolean pause) throws IOException + { + // S I M U LEN VAL + byte[] msg = {0x53, 0x49, 0x4D, 0x55, 0x00, 0x00}; + msg[5] = (byte)(pause ? 0x01 : 0x00); + sendUDP(msg); + } + + /** + * Pauses, unpauses, or switches the pause state of X-Plane. + * + * @param pause {@code 1} to pause the simulator, {@code 0} to unpause, or {@code 2} to switch. + * @throws IllegalArgumentException If the values of {@code pause} is not a valid command. + * @throws IOException If the command cannot be sent. + */ + public void pauseSim(int pause) throws IOException + { + if(pause < 0 || (pause > 2 && pause < 100) || (pause > 119 && pause < 200) || pause > 219) + { + throw new IllegalArgumentException("pause must be a value in the range [0, 2], [100, 119], or [200, 219]."); + } + + // S I M U LEN VAL + byte[] msg = {0x53, 0x49, 0x4D, 0x55, 0x00, 0x00}; + msg[5] = (byte)pause; + sendUDP(msg); + } + + /** + * Requests a single dref value from X-Plane. + * + * @param dref The name of the dref requested. + * @return A byte array representing data dependent on the dref requested. + * @throws IOException If either the request or the response fails. + */ + public float[] getDREF(String dref) throws IOException + { + return getDREFs(new String[] {dref})[0]; + } + + /** + * Requests several dref values from X-Plane. + * + * @param drefs An array of dref names to request. + * @return A multidimensional array representing the data for each requested dref. + * @throws IOException If either the request or the response fails. + */ + public float[][] getDREFs(String[] drefs) throws IOException + { + //Preconditions + if(drefs == null || drefs.length == 0) + { + throw new IllegalArgumentException("drefs must be a valid array with at least one dref."); + } + if(drefs.length > 255) + { + throw new IllegalArgumentException("Can not request more than 255 DREFs at once."); + } + + //Convert drefs to bytes. + byte[][] drefBytes = new byte[drefs.length][]; + for(int i = 0; i < drefs.length; ++i) + { + drefBytes[i] = drefs[i].getBytes(StandardCharsets.UTF_8); + if(drefBytes[i].length == 0) + { + throw new IllegalArgumentException("DREF " + i + " is an empty string!"); + } + if(drefBytes[i].length > 255) + { + throw new IllegalArgumentException("DREF " + i + " is too long (must be less than 255 bytes in UTF-8). Are you sure this is a valid DREF?"); + } + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETD".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(drefs.length); + for(byte[] dref : drefBytes) + { + os.write(dref.length); + os.write(dref, 0, dref.length); + } + sendUDP(os.toByteArray()); + + //Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 6) + { + throw new IOException("Response too short"); + } + float[][] result = new float[drefs.length][]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + int cur = 6; + for(int j = 0; j < result.length; ++j) + { + result[j] = new float[data[cur++]]; + for(int k = 0; k < result[j].length; ++k) //TODO: There must be a better way to do this + { + result[j][k] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + public void sendDREF(String dref, float value) throws IOException + { + sendDREF(dref, new float[] {value}); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param dref The name of the X-Plane dataref to set. + * @param value An array of floating point values whose structure depends on the dref specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREF(String dref, float[] value) throws IOException + { + sendDREFs(new String[] {dref}, new float[][] {value}); + } + + /** + * Sends a command to X-Plane that sets the given DREF. + * + * @param drefs The names of the X-Plane datarefs to set. + * @param values A sequence of arrays of floating point values whose structure depends on the drefs specified. + * @throws IOException If the command cannot be sent. + */ + public void sendDREFs(String[] drefs, float[][] values) throws IOException + { + //Preconditions + if(drefs == null || drefs.length == 0) + { + throw new IllegalArgumentException(("drefs must be non-empty.")); + } + if(values == null || values.length != drefs.length) + { + throw new IllegalArgumentException("values must be of the same size as drefs."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DREF".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + for(int i = 0; i < drefs.length; ++i) + { + String dref = drefs[i]; + float[] value = values[i]; + + if (dref == null) + { + throw new IllegalArgumentException("dref must be a valid string."); + } + if (value == null || value.length == 0) + { + throw new IllegalArgumentException("value must be non-null and should contain at least one value."); + } + + //Convert drefs to bytes. + byte[] drefBytes = dref.getBytes(StandardCharsets.UTF_8); + if (drefBytes.length == 0) + { + throw new IllegalArgumentException("DREF is an empty string!"); + } + if (drefBytes.length > 255) + { + throw new IllegalArgumentException("dref must be less than 255 bytes in UTF-8. Are you sure this is a valid dref?"); + } + + ByteBuffer bb = ByteBuffer.allocate(4 * value.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for (int j = 0; j < value.length; ++j) + { + bb.putFloat(j * 4, value[j]); + } + + //Build and send message + os.write(drefBytes.length); + os.write(drefBytes, 0, drefBytes.length); + os.write(value.length); + os.write(bb.array()); + } + sendUDP(os.toByteArray()); + } + + /** + * Gets the control surface information for the specified airplane. + * + * @param ac The aircraft to get control surface information for. + * @return An array containing control surface data in the same format as {@code sendCTRL}. + * @throws IOException If the command cannot be sent or a response cannot be read. + */ + public float[] getCTRL(int ac) throws IOException + { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETC".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 31) + { + throw new IOException("Response too short"); + } + + // Parse response + float[] result = new float[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + result[0] = bb.getFloat(5); + result[1] = bb.getFloat(9); + result[2] = bb.getFloat(13); + result[3] = bb.getFloat(17); + result[4] = bb.get(21); + result[5] = bb.getFloat(22); + result[6] = bb.getFloat(27); + return result; + } + + /** + * Sends command to X-Plane setting control surfaces on the player ac. + * + * @param values

An array containing zero to six values representing control surface data as follows:

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values) throws IOException + { + sendCTRL(values, 0); + } + + /** + * Sends command to X-Plane setting control surfaces on the specified ac. + * + * @param values

An array containing zero to six values representing control surface data as follows:

+ *
    + *
  1. Latitudinal Stick [-1,1]
  2. + *
  3. Longitudinal Stick [-1,1]
  4. + *
  5. Rudder Pedals [-1, 1]
  6. + *
  7. Throttle [-1, 1]
  8. + *
  9. Gear (0=up, 1=down)
  10. + *
  11. Flaps [0, 1]
  12. + *
  13. Speedbrakes [-0.5, 1.5]
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player's ac. + * @throws IOException If the command cannot be sent. + */ + public void sendCTRL(float[] values, int ac) throws IOException + { + //Preconditions + if(values == null) + { + throw new IllegalArgumentException("ctrl must no be null."); + } + if(values.length > 7) + { + throw new IllegalArgumentException("ctrl must have 7 or fewer elements."); + } + if(ac < 0 || ac > 9) + { + throw new IllegalArgumentException("ac must be non-negative and less than 9."); + } + + //Pad command values and convert to bytes + int i; + int cur = 0; + ByteBuffer bb = ByteBuffer.allocate(26); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(i = 0; i < 6; ++i) + { + if(i == 4) + { + if(i >= values.length) + { + bb.put(cur, (byte)-1); + } + else + { + bb.put(cur, (byte)values[i]); + } + cur += 1; + } + else if (i >= values.length) + { + bb.putFloat(cur, -998); + cur+= 4; + } + else + { + bb.putFloat(cur, values[i]); + cur += 4; + } + } + bb.put(cur++, (byte) ac); + bb.putFloat(cur, values.length == 7 ? values[6] : -998); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CTRL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Gets position information for the specified airplane. + * + * @param ac The aircraft to get position information for. + * @return An array containing control surface data in the same format as {@code sendPOSI}. + * @throws IOException If the command cannot be sent or a response cannot be read. + */ + public double[] getPOSI(int ac) throws IOException + { + // Send request + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("GETP".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + sendUDP(os.toByteArray()); + + // Read response + byte[] data = readUDP(); + if(data.length == 0) + { + throw new IOException("No response received."); + } + if(data.length < 34) + { + throw new IOException("Response too short"); + } + + // Parse response + double[] result = new double[7]; + ByteBuffer bb = ByteBuffer.wrap(data); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < 7; ++i) + { + result[i] = bb.getFloat(6 + 4 * i); + } + return result; + } + + /** + * Sets the position of the player ac. + * + * @param values

An array containing position elements as follows:

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values) throws IOException + { + sendPOSI(values, 0); + } + + /** + * Sets the position of the specified ac with double precision coordinates. + * + * @param values

An array containing position elements as follows:

+ *
    + *
  1. Latitude (deg)
  2. + *
  3. Longitude (deg)
  4. + *
  5. Altitude (m above MSL)
  6. + *
  7. Roll (deg)
  8. + *
  9. Pitch (deg)
  10. + *
  11. True Heading (deg)
  12. + *
  13. Gear (0=up, 1=down)
  14. + *
+ *

+ * If @{code ctrl} is less than 6 elements long, The missing elements will not be changed. To + * change values in the middle of the array without affecting the preceding values, set the + * preceding values to -998. + *

+ * @param ac The ac to set. 0 for the player ac. + * @throws IOException If the command can not be sent. + */ + public void sendPOSI(double[] values, int ac) throws IOException + { + //Preconditions + if(values == null) + { + throw new IllegalArgumentException("posi must no be null."); + } + if(values.length > 7) + { + throw new IllegalArgumentException("posi must have 7 or fewer elements."); + } + if(ac < 0 || ac > 255) + { + throw new IllegalArgumentException("ac must be between 0 and 255."); + } + + //Pad command values and convert to bytes + int i; + ByteBuffer bb = ByteBuffer.allocate(40); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(i = 0; i < values.length; ++i) + { + if(i<3) /* lat/lon/height as double */ + { + bb.putDouble(values[i]); + } + else + { + bb.putFloat((float)values[i]); + } + } + for(; i < 7; ++i) + { + bb.putFloat(-998); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("POSI".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(ac); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Reads X-Plane data + * + * @return The data read. + * @throws IOException If the read operation fails. + */ + public float[][] readData() throws IOException + { + byte[] buffer = readUDP(); + ByteBuffer bb = ByteBuffer.wrap(buffer); + int cur = 5; + int len = bb.get(cur++); + float[][] result = new float[bb.get(len)][9]; + for(int i = 0; i < len; ++i) + { + for(int j = 0; j < 9; ++j) + { + result[i][j] = bb.getFloat(cur); + cur += 4; + } + } + return result; + } + + /** + * Sends data to X-Plane + * + * @param data The data to send. + * @throws IOException If the command cannot be sent. + */ + public void sendDATA(float[][] data) throws IOException + { + //Preconditions + if(data == null || data.length == 0) + { + throw new IllegalArgumentException("data must be a non-null, non-empty array."); + } + + //Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * 9 * data.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < data.length; ++i) + { + int rowStart = 9 * 4 * i; + float[] row = data[i]; + if(row.length != 9) + { + throw new IllegalArgumentException("Rows must contain exactly 9 items. (Row " + i + ")"); + } + + bb.putInt(rowStart, (int) row[0]); + for(int j = 1; j < row.length; ++j) + { + bb.putFloat(rowStart + 4 * j, row[j]); + } + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DATA".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Selects what data X-Plane will export over UDP. + * + * @param rows The row numbers to select. + * @throws IOException If the command cannot be sent. + */ + public void selectDATA(int[] rows) throws IOException + { + //Preconditions + if(rows == null || rows.length == 0) + { + throw new IllegalArgumentException("rows must be a non-null, non-empty array."); + } + + //Convert data to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * rows.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(int i = 0; i < rows.length; ++i) + { + bb.putInt(i * 4, rows[i]); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("DSEL".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the default screen location. + * + * @param msg The message to display. Should not contain any newline characters. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg) throws IOException + { + sendTEXT(msg, -1, -1); + } + + /** + * Sets a message to be displayed on the screen in X-Plane at the specified coordinates. + * + * @param msg The message to display. Should not contain any newline characters. + * @param x The number of pixels from the right edge of the screen to display the text. + * @param y The number of pixels from the bottom edge of the screen to display the text. + * @throws IOException If the command cannot be sent. + */ + public void sendTEXT(String msg, int x, int y) throws IOException + { + //Preconditions + if(msg == null) + { + msg = ""; + } + + //Convert drefs to bytes. + byte[] msgBytes = msg.getBytes(StandardCharsets.UTF_8); + if(msgBytes.length > 255) + { + throw new IllegalArgumentException("msg must be less than 255 bytes in UTF-8."); + } + + ByteBuffer bb = ByteBuffer.allocate(8); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(0, x); + bb.putInt(4, y); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("TEXT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + os.write(msgBytes.length); + os.write(msgBytes); + sendUDP(os.toByteArray()); + } + + /** + * Sets the camera view in X-Plane. + * + * @param view The view to use. + * @throws IOException If the command cannot be sent. + */ + public void sendVIEW(ViewType view) throws IOException + { + ByteBuffer bb = ByteBuffer.allocate(4); + bb.order(ByteOrder.LITTLE_ENDIAN); + bb.putInt(view.getValue()); + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("VIEW".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Adds, removes, or clears a set of waypoints. If the command is clear, the points are ignored + * and all points are removed. + * + * @param op The operation to perform. + * @param points An array of values representing points. Each triplet in the array will be + * interpreted as a (Lat, Lon, Alt) point. + * @throws IOException If the command cannot be sent. + */ + public void sendWYPT(WaypointOp op, float[] points) throws IOException + { + //Preconditions + if(points.length % 3 != 0) + { + throw new IllegalArgumentException("points.length should be divisible by 3."); + } + if(points.length / 3 > 255) + { + throw new IllegalArgumentException("Too many points. Must be less than 256."); + } + + //Convert points to bytes + ByteBuffer bb = ByteBuffer.allocate(4 * points.length); + bb.order(ByteOrder.LITTLE_ENDIAN); + for(float f : points) + { + bb.putFloat(f); + } + + //Build and send message + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("WYPT".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write(op.getValue()); + os.write(points.length / 3); + os.write(bb.array()); + sendUDP(os.toByteArray()); + } + + /** + * Send a command to X-Plane. + * + * @param comm The name of the X-Plane command to send. + * @throws IOException If the command cannot be sent. + */ + public void sendCOMM(String comm) throws IOException + { + //Preconditions + if(comm == null || comm.length() == 0) + { + throw new IllegalArgumentException(("comm must be non-empty.")); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("COMM".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + + //Convert comm to bytes. + byte[] commBytes = comm.getBytes(StandardCharsets.UTF_8); + if (commBytes.length == 0) + { + throw new IllegalArgumentException("COMM is an empty string!"); + } + if (commBytes.length > 255) + { + throw new IllegalArgumentException("comm must be less than 255 bytes in UTF-8. Are you sure this is a valid comm?"); + } + + //Build and send message + os.write(commBytes.length); + os.write(commBytes); + sendUDP(os.toByteArray()); + } + + + /** + * Sets the port on which the client will receive data from X-Plane. + * + * @param port The new incoming port number. + * @throws IOException If the command cannot be sent. + */ + public void setCONN(int port) throws IOException + { + if(port < 0 || port >= 0xFFFF) + { + throw new IllegalArgumentException("Invalid port (must be non-negative and less than 65536)."); + } + + ByteArrayOutputStream os = new ByteArrayOutputStream(); + os.write("CONN".getBytes(StandardCharsets.UTF_8)); + os.write(0xFF); //Placeholder for message length + os.write((byte) port); + os.write((byte) (port >> 8)); + sendUDP(os.toByteArray()); + + int soTimeout = socket.getSoTimeout(); + socket.close(); + socket = new DatagramSocket(port); + socket.setSoTimeout(soTimeout); + readUDP(); // Try to read response + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/legacy output b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/legacy output new file mode 100644 index 0000000..cb4b83f --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/legacy output @@ -0,0 +1,102930 @@ +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.437418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437410] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437393] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437855] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438313] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438885] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439554] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444080] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445053] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445978] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446852] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448055] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447472] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446989] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446434] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445761] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445040] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444262] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443258] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441940] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429110] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425043] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420683] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416269] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406958] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403038] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395912] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393600] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392212] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392891] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395277] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403788] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405436] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422371] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450144] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456545] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457165] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455614] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456024] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457876] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460215] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462805] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469168] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471992] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459192] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454857] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455532] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456137] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457972] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458630] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459002] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459448] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460335] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462744] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464376] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467155] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467672] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467552] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469854] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470331] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471090] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472040] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472969] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473814] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474552] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475124] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475559] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475702] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475344] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474663] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473822] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473167] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473253] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474077] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.508598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.515886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.524099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.531637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.539400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.547068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.554779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.562815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.569609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.575167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.578974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.581823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.583315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.583469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.582424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.580462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.578728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.578772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.581705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.589060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.602591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.630001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.665815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.710220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.767574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.841560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.945644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.053377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.200319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.367592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.563183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.793386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.033850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.289993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.594690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.935886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.330507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.751961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.196524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.668369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.183504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.755541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.439354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.181965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.994884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.842642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.780983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.657885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.718103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.813063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.016268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.324188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.545799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.965721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.652737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.282558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.277481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.098907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.064331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.997635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.110428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.203587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.591064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.965778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.398758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.857964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.388084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.908157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.646408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.171295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.699104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.453217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.514397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.566444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.662704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.616066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.949570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.225014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.482277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.710510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.940674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.314140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.678123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.944557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.305855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.404457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.851532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.495193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.371628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.810532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.298386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.121414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.973007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.092178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.977005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.625870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.778366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.196960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.160538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.284531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.420731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.792465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.117462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.148972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.130524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.896271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.390579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.494476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.369934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.404358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.877228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.759262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.326523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.190643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.633362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.384918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.013657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.525314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.397018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.084595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.452667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.712097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.333435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.894806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.183472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.682220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.022980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.520599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.734192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.319427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.388245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.553802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.533508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.468597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.331207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.188995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.992432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.734802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.466919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.171387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.127930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.662933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.936310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.275696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.488647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.704224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.811371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.823334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.186768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.140961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.037872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.775055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.415009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.315399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.989319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.369141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.642395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.027344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.428986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.693420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.758026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.754944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.777161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.723328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.624451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.344116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.002258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.649597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.272552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.836060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.357452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.825958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.258331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.642578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.984619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.289795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.530457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.741241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.928802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.075806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.188385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.268188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.318146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.340302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.342224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.323822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.284760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.230286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.165680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.085236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.005524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.911224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.814301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.727966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.638397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.551483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.486023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.427979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.379883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.351440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.340271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.353577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.392395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.466095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.570862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.706726] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.864471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.051147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.291443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.554932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.878510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.217316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.653198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.102448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.581818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.115112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.665070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.249023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.563965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.300140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.092560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.948242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.822723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.815369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.864471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.017517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.188812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.380035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.609222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.007233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.402039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.347076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.789032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.372986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.830658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.343750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.063477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.595490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.170715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.806732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.131195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.259766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.712738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.021484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.295074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.616516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.024780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.366333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.575562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.240234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.744812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.364868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.904510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.875610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.575012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.427368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.315430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.641235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.944885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.205902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.613373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.803375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.178680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.405426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.472076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.593689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.621033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.823212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.864410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.992920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.986359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.426605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.646088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.013275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.420532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.517822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.738861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.971130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.145264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.308044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.422241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.749268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.049072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.580017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.195740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.743164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.336731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.967590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.557312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.926514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.417297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.965698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.516785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.807312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.982361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.089966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.507996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.770508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.256287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.622192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.944580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.327026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.585327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.724243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.852905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.181580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.236511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.201355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.202393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.134033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.221008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.986328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.674072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.342041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.062500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.642029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.008301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.228271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.453125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.927673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.393677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.526794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.848572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.882690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.854187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.780945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.629639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.590637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.513733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.278503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.036499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.740967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.777344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.505676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.115967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.525879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.186035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.808777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.425415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.851929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.390076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.881226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.072571] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.166748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.444092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.710388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.682861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.587585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.520325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.634644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.556580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.488342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.418823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.343323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.133118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.886597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.585022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.287109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.044922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.752502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.418335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.007507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.596313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.205444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.775879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.345093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.874512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.386108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.902283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.435364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.991882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.547241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.045105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.544312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.131592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.708374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.265564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.862061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.503723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.100769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.665955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.230774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.751221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.290039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.900391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.531128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.112244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.695923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.242493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.785095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.393066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.107910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.796570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.504150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.241516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.048950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.878479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.680298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.571350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.366333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.147461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.002014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.905884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.870422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.797852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.765503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.786072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.903076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.050842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.135254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.306763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.605042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.931519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.177185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.569092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.033508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.618958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.314270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.921631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.503052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.475464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.499146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.591431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.763550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.730652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.776428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.102295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.512329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.803406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.903381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.974731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.085754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.389404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.650024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.080017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.674866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.977051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.529907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.284180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.755737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.544312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.208130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.750916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.276123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.779236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.345215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.162109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.960754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.910461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.741699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.873169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.852417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.743713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.705200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.621216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.477356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.365784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.225159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.416626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.521179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.706299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.623108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.756714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.703735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.755493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.803040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.721130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.726990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.850769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.960938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.178345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.189819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.243958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.273254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.126587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.773743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.339783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.928528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.603699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.288452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.077942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.028992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.845581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.348572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.769470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.510925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.006104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.666748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.298462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.969482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.500671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.133972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.658386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.285706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.702820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.062622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.562744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.974976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.261292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.388184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.655945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.910767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.148193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.405334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.529602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.858643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.081543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.066528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.999451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.933228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.876648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.798706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.612305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.508606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.452637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.484741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.429321] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.179565] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.059631] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.878357] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.551880] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.329773] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.934570] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.550598] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.198975] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.843140] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.400452] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.936523] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.480347] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.896362] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.212708] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.608032] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.878418] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.069702] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.122925] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.139648] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.101685] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.973633] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.742065] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.411011] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.490601] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.846802] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.100830] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.237183] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.256836] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.171631] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.944580] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.595459] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.108276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.424438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.672241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.764282] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.714233] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.484985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.119141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.615845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.952148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.962280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.880554] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.755615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.278564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.761353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.159485] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.453369] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.437500] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.059570] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.598816] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.142456] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.334595] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.368164] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.577576] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.585632] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.275757] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.167053] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.860596] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.912415] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.678223] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.082031] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.651917] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.225708] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.956726] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.739014] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.454712] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.348877] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.297485] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.813904] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.694031] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.637817] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.307983] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.205811] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.072876] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.505615] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.812256] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.217346] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.912292] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.593201] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.538879] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.733887] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.849243] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.419373] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.242676] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.480286] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.790161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.546692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.588684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.938660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.655151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.695679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.063904] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.824097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.979370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.781128] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.819580] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.124695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.640930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.707520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.835876] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.637634] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.355347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.945374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.895081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.789673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.770691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.108398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.440002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.316528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.119080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.701477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.065247] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.332397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.052063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.357666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.688782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.821228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.169800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.738037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.519897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.927856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.621826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.495972] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.708740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.898193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.734741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.031372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.190674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.833618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.743164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.663940] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.932983] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.919312] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.670776] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.530396] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.765381] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.122803] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.719116] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.918945] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.940308] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.962769] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.065063] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.538086] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.011841] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.530029] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.785156] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.828003] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.994385] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.342163] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.100952] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.833130] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.387207] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.437601] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437601] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437597] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437544] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437477] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437546] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437712] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438416] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440275] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441057] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441923] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443647] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445711] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446745] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447590] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448130] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446798] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446140] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445332] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444475] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443485] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442255] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440798] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434055] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427380] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415543] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404861] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400749] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396999] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394217] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392662] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393278] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395527] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400457] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408451] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410944] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413813] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421871] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426687] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436420] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454865] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456938] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457438] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456369] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455778] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456100] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460043] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462576] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473053] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472631] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466173] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458811] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453978] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454041] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454212] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454947] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455980] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456264] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457218] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458479] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460056] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461939] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464956] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465313] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465258] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464947] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464422] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464745] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466160] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466825] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467693] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468254] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471645] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472998] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474140] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474874] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474972] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474609] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474176] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474001] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474607] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475771] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477043] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.506834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.512005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.524864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.531664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.539177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.547655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.556063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.564102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.571127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.577255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.582798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.585331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.587254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.587990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.587997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.588268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.589951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.594488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.603745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.620913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.648502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.683893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.728163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.786942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.859291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.948772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.060493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.182125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.333708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.523293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.719044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.942404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.218639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.495846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.814468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.159821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.556267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.019934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.511862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.047428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.653856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.266291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.016333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.783039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.628452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.513870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.426619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.398863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.448338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.634888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.855604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.059261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.371777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.929985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.512550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.189045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.878845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.694679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.679703] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.690010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.800343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.038704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.110825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.448494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.047688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.598839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.219437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.977684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.660408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.549751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.240608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.966499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.891525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.741783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.818748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.038872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.044312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.557945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.931709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.452354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.968071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.712433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.554970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.610725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.039864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.651947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.144379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.665634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.411179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.352554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.047195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.899033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.542816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.281403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.429749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.374298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.438751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.438873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.368225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.039398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.012115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.113708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.607971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.223465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.171692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.232803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.544861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.437363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.484146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.888443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.711975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.591843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.263260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.770462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.592026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.477951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.337051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.821548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.470642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.002548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.367889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.678986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.172394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.814484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.289337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.763153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.298492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.389679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.723969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.921661] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.995789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.932007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.776489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.746887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.700104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.389832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.468414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.232758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.962860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.562317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.180664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.482666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.791748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.037598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.171448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.447144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.907928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.068329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.930359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.458099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.404327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.316162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.945190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.498932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.963837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.470917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.910614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.277130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.614075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.839569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.088776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.255707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.382141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.452057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.394012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.250275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.260559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.968231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.699615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.314850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.878998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.437561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.965851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.431091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.845856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.246948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.577637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.859528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.112183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.367798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.581848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.776306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.947113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.100830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.234467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.350983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.451660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.542877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.611786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.678650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.738312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.795380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.851471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.908356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.967712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.033844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.113037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.192596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.293304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.390930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.506042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.639618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.796112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.971832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.161255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.365509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.594727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.866638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.163727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.474762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.801300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.170410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.553375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.989471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.466766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.963745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.477722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.000671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.578888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.262238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.549591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.716370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.919434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.244019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.444000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.723267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.184082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.640381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.146454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.761719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.309692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.956604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.691284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.532623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.424377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.453064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.847351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.388123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.734497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.071320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.648560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.255402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.084961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.853210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.747681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.376648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.112122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.940338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.361938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.573853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.735107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.923401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.729004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.712952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.905823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.478973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.722565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.000763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.577789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.106720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.536377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.192749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.589294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.987549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.244751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.194214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.715942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.273315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.752563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.608765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.134460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.695496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.068420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.716125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.536987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.504517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.233948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.567871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.053101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.475647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.495483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.003113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.801758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.229797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.436401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.542847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.821472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.060791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.085754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.128357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.936157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.839600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.655212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.595276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.197693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.903748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.776855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.524780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.372559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.178223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.770691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.369751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.941956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.245239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.913635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.775696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.314514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.767700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.246277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.681335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.067566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.428284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.579468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.640198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.820984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.059875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.199341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.393799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.597839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.570923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.670715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.497375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.288452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.521545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.871887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.316223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.755310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.345215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.863037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.231384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.571533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.985046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.395691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.709778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.976746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.144409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.312744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.416199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.635925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.775452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.891724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.968201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.010132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.108643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.074707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.994873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.919739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.774292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.689575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.482788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.294434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.100647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.873535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.590454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.354004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.119812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.022583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.773071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.470398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.244141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.995789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.693176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.327393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.938477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.574463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.168640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.782227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.460388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.062500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.625488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.169434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.747681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.306763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.945923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.528687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.127014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.739075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.349304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.983704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.653931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.320862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.995972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.681030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.442627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.177734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.962769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.715942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.458435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.332886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.228638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.202698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.220581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.337402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.332153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.432068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.502319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.704102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.981628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.213745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.448425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.718811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.053223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.391113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.827148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.308716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.818604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.428284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.051392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.577942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.357666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.886353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.257446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.771606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.384094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.811401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.389404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.977783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.830933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.503784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.424316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.379395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.174561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.135376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.090637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.978760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.701477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.273621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.853271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.735718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.510742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.319580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.301086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.291565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.115479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.389404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.393616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.470825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.547913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.502197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.383911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.226257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.079590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.920837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.720215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.310730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.952942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.391418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.066406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.541992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.982361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.727905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.257813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.208801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.469604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.731445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.982178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.321167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.682800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.047119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.172668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.602478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.721497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.897949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.320801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.322144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.231567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.158630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.103882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.041992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.963989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.922180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.604553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.283325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.147644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.058167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.760803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.648804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.546082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.470520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.268799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.225525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.033691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.795105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.549133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.341187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.101318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.894531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.705322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.648560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.391479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.109558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.098938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.911316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.423645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.081482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.780640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.912231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.671753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.300903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.061279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.723206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.296997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.975037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.518616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.171692] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.970337] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.790894] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.648743] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.604553] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.430176] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.085938] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.911377] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.681824] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.281128] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.039612] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.742371] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.409485] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.005798] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.619873] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.286011] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.875854] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.487793] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.021606] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.533813] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.939209] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.377075] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.710938] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.019165] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.169434] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.329590] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.413574] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.463623] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.422241] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.295410] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.081421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.772827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.375366] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.789917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.133423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.364502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.443848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.407104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.255981] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.998291] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.604004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.037598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.408203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.594116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.651245] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.571899] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.381226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.022705] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.600220] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.904297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.167969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.213135] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.143188] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.718018] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.652710] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.812683] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.922668] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.678955] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.980225] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.873108] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.265381] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.106934] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.453979] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.756714] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.048218] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.678406] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.658386] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.959839] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.252441] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.708191] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.265930] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.671570] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.542603] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.846130] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.260315] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.282043] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.101868] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.842529] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.941223] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.072327] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.355164] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.659790] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.381775] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.435974] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.597107] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.938721] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.470154] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.241943] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.285645] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.522461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.985535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.689819] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.637817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.813538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.263611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.008606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.976990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.292908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.903015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.748474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.009399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.428711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.404358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.490234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.986328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.810364] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.162476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.601013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.398926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.111877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.265747] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.796204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.717285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.724060] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.112732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.689087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.092346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.396729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.292236] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.392944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.140015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.111206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.104004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.072144] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.799194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.470825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.698975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.238770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.127686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.676636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.124634] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.149780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.359619] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.298462] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.683716] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.807495] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.796509] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.322266] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.658081] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.135010] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.476074] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.676025] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.847900] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.182983] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.146973] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.501343] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.357178] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.258179] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.433105] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.968262] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.587769] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.006592] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.061523] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.919312] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.075195] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.118530] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.584106] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.046631] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.796753] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.479614] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.454590] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.220093] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.854370] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.618896] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.367798] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.851074] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.944092] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.580322] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.249268] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.022949] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.320068] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.424561] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.223389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.333130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.610596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.535522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.218872] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.769897] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.388550] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.015503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.156006] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.924072] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.542969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.856812] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.774658] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.426147] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.911377] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.191895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.274170] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.148193] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.831421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.300659] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.491821] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.148926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.521729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.591919] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.627075] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.393921] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.957520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.197510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.488403] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.294922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.926880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.359985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.569214] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.171021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.188721] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.990845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.354614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.510010] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.127441] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.424194] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.038208] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.459595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.093384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.699219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.010010] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.096069] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.926514] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.025879] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.692139] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.590332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.034668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.120850] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.147583] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.840454] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.494385] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.159180] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.461182] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.090088] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.007568] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.637695] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.123413] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.199585] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.469849] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.327759] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.195557] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.408569] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.125732] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.921997] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.870239] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.843140] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.964111] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.961426] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.119629] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.518921] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.170166] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.345215] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.204529] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.238892] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.010193] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.522949] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.064575] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.548523] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.808533] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.015320] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.045105] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.200867] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.338623] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.566406] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.955200] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.337891] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.335205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.620544] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.787598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.143738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.169861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.774841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.221497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.256287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.934021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.824524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.547729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.879639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.840393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.784668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.618408] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.115845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.161377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.768188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.223206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.449280] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.257813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.789856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.257568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.658630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.026123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.750488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.112244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.506470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.492004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.302246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.786621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.793152] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.646057] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.633606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.878662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.350708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.686157] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.912231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.648071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.381348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.894897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.766724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.538086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.237061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.075684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.076050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.679565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.234985] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.132568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.755615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.972534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.278564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.063721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.982666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.729736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.728149] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.791138] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.049316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.890747] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.379639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.768555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.041870] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.133179] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.433350] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.867432] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.718262] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.356201] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.775146] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.130493] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.699585] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.001709] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.609985] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.024414] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.113159] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.932129] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.559082] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.054688] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.939087] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.966919] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.956055] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.213989] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.318237] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1475.183594] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.970215] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.261841] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.502319] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.280518] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.854736] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.024536] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.268799] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.078125] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.504761] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1538.695679] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1543.849976] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.293823] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.155518] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.559082] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.615601] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.468384] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.366211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.291626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.842651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.217163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.196655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.508179] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.078003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.748413] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.812256] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.906006] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.616333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.248169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.955322] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.154419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.147705] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.998535] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.292969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.267700] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.929077] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.221558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.240234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.905762] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.263794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.253540] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.961426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.509644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.260254] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1595.537109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.231689] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.662842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.309326] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.762695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.139404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.395264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.773071] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.615967] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.173462] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.021973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.090454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.411743] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.141724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.072754] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.336792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.545532] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.893188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.445435] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1478.613037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.444336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.786255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.849731] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.708862] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.155640] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.220581] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.234985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.722656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.269897] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.335327] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.642822] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.152466] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.630981] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.082153] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.592896] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.939087] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.328369] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.149658] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.018677] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.456177] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.474365] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.236328] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.610596] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.251831] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.755615] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.753784] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.587036] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.379272] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.540039] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.264771] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.159058] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.093140] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.280518] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.641968] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.539246] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.095703] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.867188] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.523315] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.728638] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.947144] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.381470] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.425476] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.866638] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.328308] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.991821] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.760071] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.744629] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.729919] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.341370] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.753113] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.780945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.764648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.620483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.768921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.621948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.310120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.169983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.855713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.536438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.764282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.294617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.342712] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.178101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.310577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.045868] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.866058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.699738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.107056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.012878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.626984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.384918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.948059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.797577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.586395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.255249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.816040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.600525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.542175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.437775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.354279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.286957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.308594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.389709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.550049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.347809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.765381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.058228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.999725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.868958] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.990753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.425201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.772156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.803864] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.202454] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.903076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.155212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.466248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.294250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.280090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.632629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.319519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.202881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.564819] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.953308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.328918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.724792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.816284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.555237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.088013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.436829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.169739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.646790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.223267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.878235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.158325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.938049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.449768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.128418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.605347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.579407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.852539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.256165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.141968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.343750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.484070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.182617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.947205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.312866] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.785522] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.948608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.134338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.277588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.125854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.807251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.986206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.610596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.694092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.604980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.463989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.666870] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.661865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.678589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.204224] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.607666] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.465332] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.523193] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.262573] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.111938] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.059814] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.807983] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.810059] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.243042] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.413452] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.577515] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.921387] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.503296] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.328125] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.352661] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.800293] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.172607] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.894409] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.563965] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.379883] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.881226] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.497803] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.363892] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.445923] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.149048] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.571899] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.610596] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.233643] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.080078] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.598145] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.448853] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.963745] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.281128] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.075928] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.421631] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.330933] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.734497] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.772461] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.418579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.674438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.645508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.294800] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.410889] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.366943] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.941650] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.344727] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.052002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.064209] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.043823] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.383667] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.200684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.354614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.929932] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.959473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.671143] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.249390] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.122437] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.453735] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.525024] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.795898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.932251] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.180908] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.633423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.754639] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.893066] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.024292] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.214233] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.323853] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.826050] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.339722] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.508179] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.077393] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.725586] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.956909] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.474854] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.482300] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.821777] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.024414] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.665161] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.557495] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.776245] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.894531] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.210205] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.847900] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.260010] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.777344] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.130554] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.783142] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.522217] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.158875] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.815613] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.348206] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.409424] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.944458] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.068787] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.682678] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.645447] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.860291] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.093750] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.943481] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.954041] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.802673] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.116943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.869202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.859802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.499756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.908142] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.579163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.181824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.839905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.628235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.538086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.679749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.302246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.475983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.408142] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.394745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.478699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.132721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.684814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.878937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.186523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.136047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.051025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.689728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.750214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.017242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.502594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.305145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.020264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.152222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.525146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.084930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.845215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.869476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.109344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.527954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.973938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.213470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.334045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.044708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.708954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.356293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.470551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.867279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.411133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.454834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.388184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.150482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.081665] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.218719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.239777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.284332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.503448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.287537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.701965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.294983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.910339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.491638] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.013306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.419983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.008667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.616882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.146240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.080322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.592041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.199402] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.387329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.864990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.262268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.984009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.490601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.830688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.675903] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.593506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.214905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.517273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.702271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.423584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.730713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.074585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.452026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.407043] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.370667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.492676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.629700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.411926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.582458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.451355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.942810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.118591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.479675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.680481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.957825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.355347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.872681] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.796509] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.456543] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.748291] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.387085] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.220947] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.116577] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.014526] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.985962] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.491699] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.682739] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.548218] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.100220] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.731689] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.115601] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.261353] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.512939] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.805786] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.676880] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.283813] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.769775] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.373901] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.761963] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.667725] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.388428] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.398193] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.184448] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.462769] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.421143] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.904419] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.973389] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.547363] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.717529] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.436157] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.668945] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.432129] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.791870] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.768066] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.350464] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.454712] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.227661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.545654] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.299194] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.545898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.793579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.695313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.734131] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.712280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.573608] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.273193] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.591431] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.295776] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.081909] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.813110] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.658447] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.502563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.954834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.845093] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.556519] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.272095] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.442139] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.246826] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.868164] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.987305] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.711548] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.411987] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.818115] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.703369] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.356934] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.167114] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.680542] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.679565] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.923767] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.285645] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.859375] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.292786] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.180908] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.903015] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.423340] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.129517] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.945801] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.024109] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.566162] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.236450] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.753601] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.443481] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.957825] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.500549] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.674255] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.163025] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.268311] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.785889] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.232056] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.186646] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.241272] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.972473] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.380127] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.759644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.877136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.873596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.138367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.541626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.416626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.195343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.965912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.701660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.641113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.919098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.035858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.592621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.527161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.409515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.781219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.108856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.628601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.216309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.080460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.089111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.847076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.022400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.726990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.055313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.976929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.733719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.173264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.035767] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.975250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.854630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.209732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.770203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.003235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.270203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.633240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.417969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.678070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.164246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.031372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.608704] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.052155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.568420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.428223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.313812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.899353] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.548126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.690521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.290100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.732361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.786987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.377502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.069885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.696259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.456543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.012878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.751587] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.822449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.481262] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.224365] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.898926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.607239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.720581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.276001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.699768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.260376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.557983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.018555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.699097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.243347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.728638] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.082336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.866211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.031372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.443848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.518066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.880188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.527893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.410400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.520386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.401733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.167542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.911499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.936951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.712341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.694763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.813660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.244690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.152954] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.108337] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.569763] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.817017] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.967041] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.448547] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.276489] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.614502] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.589844] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.280151] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.486084] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.770996] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.528564] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.699219] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.433350] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.405151] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.667969] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.605469] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.098511] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.613403] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.660767] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.047485] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.091919] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.938354] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.929321] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.268799] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.100220] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.763672] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.226685] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.736206] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.790405] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.572754] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.782227] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.572266] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.861328] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.839355] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.353882] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.501831] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.153198] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.769409] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.915771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.469971] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.623291] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.350464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.593384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.666138] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.622192] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.970215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.049438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.007568] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.468018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.441895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.360596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.632935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.632690] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.630127] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.211670] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.276367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.930298] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.183105] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.624268] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.028442] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.708862] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.658569] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.471741] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.338989] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.826599] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.922485] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.651123] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.305481] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.208435] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.199829] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.213501] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.370605] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.219604] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.744629] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.093262] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.665894] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.372803] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.668823] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.376038] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.321472] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.953613] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.472839] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.327087] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.732544] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.568237] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.441772] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.569031] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.096558] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.006409] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.857422] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.953796] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.207886] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.595520] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.083496] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.448486] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.203949] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.661407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.506226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.036469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.853699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.204803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.686554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.575867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.856079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.480927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.598969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.118195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.797684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.555786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.801758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.194077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.924713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.259003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.738480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.259933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.287766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.373062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.991409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.157661] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.161629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.724106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.120308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.485672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.137337] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.845230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.715858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.753418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.082237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.033463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.299461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.400421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.811989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.938332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.679749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.357864] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.558243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.623322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.903351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.976532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.740158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.244186] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.059921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.898392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.127121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.035217] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.341125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.783447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.802643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.664063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.012939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.482361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.846436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.817444] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.244507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.168274] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.030273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.890167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.496063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.999756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.323975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.469727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.560120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.420959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.546143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.568420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.137939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.105591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.457581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.250916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.251160] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.541443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.336609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.128235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.820435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.422791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.806152] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.824219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.672791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.132324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.400452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.193970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.019897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.579590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.556274] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.260925] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.409912] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.902039] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.983459] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.057922] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.257019] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.022156] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.664612] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.603821] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.492615] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.084778] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.531616] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.647644] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.013184] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.240051] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.516296] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.535095] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.361877] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.681458] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.064880] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.249695] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.398560] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.940552] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.374756] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.708618] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.016235] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.682007] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.110596] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.953735] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.383545] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.781372] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.828003] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.417480] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.621948] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.430908] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.838013] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.700195] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.069824] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.999634] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.628784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.530151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.241943] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.135620] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.036133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.083252] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.349243] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.285889] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.547241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.855774] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.324646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.294189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.218994] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.629150] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.560425] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.616089] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.737000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.637451] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.602234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.028564] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.135742] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.833496] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.655029] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.675903] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.496277] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.281189] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.586548] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.448608] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.639221] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.151733] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.758972] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.845459] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.581360] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.374512] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.852234] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.992188] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.626343] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.912720] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.096375] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.936401] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.321106] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.662598] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.758728] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.945740] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.577637] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.370605] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.693176] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.666077] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.011414] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.856964] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.715210] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.091217] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.922974] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.144745] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.713654] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.483124] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.807007] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.252930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.046600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.664459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.669922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.936768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.330566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.581375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.577286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.396408] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.229645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.438185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438171] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438030] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437984] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437992] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438295] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438633] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439104] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440878] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442394] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443146] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444838] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445841] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446735] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448629] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448450] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448067] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447491] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445271] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444414] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443356] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442053] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440348] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435905] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433218] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429901] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422773] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419024] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413961] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394243] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392853] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395315] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397442] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401590] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406591] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417419] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426943] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432425] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443085] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448256] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456373] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457966] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457558] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456724] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456264] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459263] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461374] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466860] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470177] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472855] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467581] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463778] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460129] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456839] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454676] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457565] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457670] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458035] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459482] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462412] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464014] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466934] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467306] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467615] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468178] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469160] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470085] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470642] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471426] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473537] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475801] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477081] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478474] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479120] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479139] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478975] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478888] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478981] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479305] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479990] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.501175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.505461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.510609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.525444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.533255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.540806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.548197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.555954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.563494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.571407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.578905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.583937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.587919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.590965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.593908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.597317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.601818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.607084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.614624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.623913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.637926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.655787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.680849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.731670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.784235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.847790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.924232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.022352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.136028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.269218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.426670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.611597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.818081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.058977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.332329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.631628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.962112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.347857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.786240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.377304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.860346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.403473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.981735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.667801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.329594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.120348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.911671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.797356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.820879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.831383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.826771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.917343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.169243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.497692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.954910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.613724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.235718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.028576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.671440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.440254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.307163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.258469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.516567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.824535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.385365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.821430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.533951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.323223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.027802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.947029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.012077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.867767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.778839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.789688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.103790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.293495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.553070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.800560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.244354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.544746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.907372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.343292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.008026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.948563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.490036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.885246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.879845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.527100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.434555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.320908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.258652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.146408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.965485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.905411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.717468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.734604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.863953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.006119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.056335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.942734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.889145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.765442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.801971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.890961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.223114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.270676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.760803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.225861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.772507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.306000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.218323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.270264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.241669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.014954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.863907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.377808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.972137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.509705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.271973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.784576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.123230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.219666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.609741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.810486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.582916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.871155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.988770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.221558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.361176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.211761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.108826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.306549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.260651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.027069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.919891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.611084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.178223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.837128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.439545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.788544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.063293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.315460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.660278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.907806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.191406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.416809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.515076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.491302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.536499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.565735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.338684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.049469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.792603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.599457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.146759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.675690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.179077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.572021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.907806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.193329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.471619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.664368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.829346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.033997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.107941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.128662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.124268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.020782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.945099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.838470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.627991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.380890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.109497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.874969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.517303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.109650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.674225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.182800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.654877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.127014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.554749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.967377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.341583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.675201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.016632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.291260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.532745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.749969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.938507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.091949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.232849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.345001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.444061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.516602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.572083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.614777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.644897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.662567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.673218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.678680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.680359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.680511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.682709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.689880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.704071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.728363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.769562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.824005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.898651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.992920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.110504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.271423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.454926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.662231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.946869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.238220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.575439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.959900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.365692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.801178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.345215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.007935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.636078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.263031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.997711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.904053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.851257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.768707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.826324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.887939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.922241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.076538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.386688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.750610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.301880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.966339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.463074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.026886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.728180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.343018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.097260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.234924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.423828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.308807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.222748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.257416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.400513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.600586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.833466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.298584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.574951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.308899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.984711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.769714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.881012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.331665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.867462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.269623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.117920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.553955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.920013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.987732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.187744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.268402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.744873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.184204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.483643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.128204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.030273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.170593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.039398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.889221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.810150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.264679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.063477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.785767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.701843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.954285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.138184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.221741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.437134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.469116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.958984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.581177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.920532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.110291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.148071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.222412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.466370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.144531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.659546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.942688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.196106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.043579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.971436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.516785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.553345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.541687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.433533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.668152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.843628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.106506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.336609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.318054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.306763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.207520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.093872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.777771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.396301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.924500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.468262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.026917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.459656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.834045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.267334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.805298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.129883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.828857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.482544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.772949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.019897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.353149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.522888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.744141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.868408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.816833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.797119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.844666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.863525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.893921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.778381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.807434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.764038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.482910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.241760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.919922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.477051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.102051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.905640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.579895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.140259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.651611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.140686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.574341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.045471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.249573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.402466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.476563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.550354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.544434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.579102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.730469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.722595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.741333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.643799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.480713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.362061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.164246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.899170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.649475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.299438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.925964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.497070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.992493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.463684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.914001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.364746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.786316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.173462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.554626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.915344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.283997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.633057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.024048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.406006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.770264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.131348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.475098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.826416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.252930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.686340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.133911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.628113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.168823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.702881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.331482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.016724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.624634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.212830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.851135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.542236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.360596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.131226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.922913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.661438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.504639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.325439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.274048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.223633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.122742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.161011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.268372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.503540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.766296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.028259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.242371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.498352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.836670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.168091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.786865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.464111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.971558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.490295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.056885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.644226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.249817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.999939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.944885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.926453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.466187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.429932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.420227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.323730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.245056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.283936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.349548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.495789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.564392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.723999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.811890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.023926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.122925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.481628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.761047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.150513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.455627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.897034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.718994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.310364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.835266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.602844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.424622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.135986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.840271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.489014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.077576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.612671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.273071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.792175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.728027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.656433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.433716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.145691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.350220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.313904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.166504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.028809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.952148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.127869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.242371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.401245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.314880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.204407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.107422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.158325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.081299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.149597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.095337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.919983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.861877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.831482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.776611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.826355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.648132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.435730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.449768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.719666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.842590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.776367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.458435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.219177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.748413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.383545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.998230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.585999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.246704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.228638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.264465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.850403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.445496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.341248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.352234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.141418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.795349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.487549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.009277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.451782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.174011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.452942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.615051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.692383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.051208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.364014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.934204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.916931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.785828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.538391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.593445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.816589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.937256] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.961060] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.795471] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.484924] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.088440] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.770569] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.373535] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.080505] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.664185] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.189148] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.645630] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.109863] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.478027] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.976379] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.348083] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.583984] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.961670] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.183716] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.232788] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.149414] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.055908] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.899536] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.691406] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.461792] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.210083] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.787598] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.242188] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.623291] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.912720] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.123291] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.203735] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.162476] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.036255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.816528] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.441772] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.871216] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.290649] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.531250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.565063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.398315] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.896118] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.479858] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.985962] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.266235] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.037598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.279114] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.296387] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.188232] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.813721] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.083862] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.528992] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.945496] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.956482] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.912964] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.644470] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.258972] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.777466] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.059998] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.254700] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.564087] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.693054] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.932373] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.285767] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.598389] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.598816] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.814819] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.626648] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.050598] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.467590] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.112549] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.735352] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.323975] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.130310] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.590881] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.640259] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.453003] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.487854] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.548096] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.423035] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.266602] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.452332] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.922302] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.425171] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.288208] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.352661] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.299377] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.294556] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.914429] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.961670] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.272278] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.781982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.499268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.586853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.111633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.975891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.140198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.726563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.762329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.130554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.767944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.699341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.216980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.551636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.252930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.303894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.053650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.863586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.400635] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.989563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.460327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.194153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.399292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.934204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.428040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.774658] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.989136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.588562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.872375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.855957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.040649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.554871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.881226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.934998] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.281982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.631226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.187378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.087402] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.137451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.026245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.911621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.865479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.653931] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.925781] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.188354] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.019409] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.083374] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.584961] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.512329] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.446045] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.560669] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.379761] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.759888] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.706421] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.654785] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.642700] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.516479] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.304199] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.641724] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.279907] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.819580] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.721802] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.296997] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.079956] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.533569] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.722412] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.513672] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.032104] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.860474] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.357300] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.729492] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.591187] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.569824] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.580444] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.243774] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.572144] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.701050] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.815918] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.515869] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.130005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.639893] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.011108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.892090] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.543335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.084473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.861572] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.183228] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.185181] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.763672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.050171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.214966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.181885] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.809692] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.138672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.187256] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.966797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.436646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.647583] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.552979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.072876] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.442871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.546875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.324219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.835083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.941895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.829590] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.346191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.475830] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.463257] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.608154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.877686] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.568237] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.303955] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.154175] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.953613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.524780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.601929] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.311768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.391602] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.755737] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.036987] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.870361] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.037964] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.212891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.051758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.113159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.470459] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.482300] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.401367] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.730347] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.313477] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.578857] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.229004] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.583008] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.329102] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.153320] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.665527] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.027100] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.236694] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.683960] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.893188] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.781738] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.409790] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.768921] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.960388] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.947876] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.240601] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.060791] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.008545] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.920593] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.756958] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.870483] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.828247] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.685364] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.075439] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.110535] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.671204] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.657471] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.940918] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.606873] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.043335] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.193909] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.300476] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.779968] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.451721] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.351929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.303101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.536255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.688049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.312256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.461243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.180847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.654907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.921265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.876343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.660217] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.138550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.286316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.194153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.492554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.820251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.553406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.831055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.267578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.160522] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.234253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.032654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.746155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.602539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.766907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.684082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.262878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.909058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.342102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.539490] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.962524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.284668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.209534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.409790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.109436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.971802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.529663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.185547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.629150] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.222412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.775940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.504272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.484863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.836914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.622070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.763550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.632568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.528076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.488037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.201172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.312134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.221680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.617554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.452271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.400269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.680908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.345581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.569946] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.618774] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.430054] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.017578] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.932373] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.997925] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.603394] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.415649] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.102661] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.376709] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.617188] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.192627] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.109497] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.429321] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.567627] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.706421] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.109253] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.311157] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.847046] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.818359] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.864624] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.623413] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.439331] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.770752] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.795898] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1511.981567] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1517.278442] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.561890] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1527.536255] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.478638] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1536.652710] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.643188] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.408203] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.236450] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.559082] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.708740] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.471924] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.793457] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.617188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.966553] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1565.716187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.166992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.281738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.020752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1565.363770] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.409302] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.121826] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.341064] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.520264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.414551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.819458] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.626953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.296875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.542969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.219971] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.820313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.012695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.942993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.026855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.669922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.758545] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.452393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.507935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.794067] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.347534] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.262695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.732178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.273193] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.272827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.034546] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.167969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.766113] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.858154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.564209] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.391113] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.953613] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.190552] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.590820] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.192017] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.634644] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.895264] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.646240] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.800171] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.270752] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.714600] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.042480] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.755981] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.586182] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.222778] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.458191] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.506714] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.121948] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.058411] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.651672] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.249268] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.697632] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.036499] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.591736] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.953003] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.380859] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.692078] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.310242] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.908508] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.689514] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.706299] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.395996] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.228760] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.449738] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.254822] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.068481] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.154938] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.485870] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.148651] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.570709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.300049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.162323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.706787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.029602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.888184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.401642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.964386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.825378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.193329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.086639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.699524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.815155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.435852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.013611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.233276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.642395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.586853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.276978] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.291992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.097717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.078064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.859558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.170044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.726440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.447449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.108826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.178040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.044312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.608948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.500366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.940247] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.740845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.986816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.525208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.240723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.001465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.650879] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.438574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438570] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438547] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438427] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438845] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439741] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441681] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443119] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443869] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447508] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449219] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448776] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448242] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447584] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441422] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437449] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431492] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427980] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420900] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412788] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408615] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404699] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400900] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397852] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393143] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397427] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399952] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402372] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404297] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409786] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412205] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418903] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423943] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434952] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449982] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457579] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459412] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458303] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456736] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457544] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461763] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464664] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467842] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470627] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467876] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463747] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452473] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452909] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453403] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453768] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454231] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454689] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455223] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455776] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468658] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470299] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472248] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473068] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473890] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477964] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478855] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479923] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480902] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481413] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481215] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480503] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479752] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479036] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478416] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.497461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.503319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.525579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.532330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.538841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.545641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.552986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.560963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.569088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.576048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.581659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.586891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.592201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.598186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.604973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.613712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.624416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.639851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.658234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.681061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.716446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.758760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.810497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.870745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.952682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.045418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.157982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.516354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.645807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.753841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.933893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.128933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.295303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.692009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.067448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.558861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.098576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.787357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.449764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.474602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.420528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.571186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.589539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.659420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.140579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.534603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.043869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.437527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.917648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.517143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.877159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.706917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.428955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.057976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.925323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.871635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.301689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.894951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.286255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.745216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.346451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.908218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.524887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.974136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.936935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.740936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.356300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.201683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.913193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.997040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.744354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.171021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.837997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.391205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.762909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.352081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.364319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.262619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.191757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.958801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.493546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.397385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.329102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.931244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.620117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.289642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.064743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.962524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.818542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.138306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.284332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.251541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.912109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.581543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.365204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.059586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.699631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.065430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.788574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.439682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.126724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.727997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.238251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.181274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.303619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.164459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.459198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.602081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.340393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.240540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.216583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.103394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.885529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.804260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.443085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.341034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.146057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.043121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.072693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.263641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.719940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.151276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.560730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.725800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.047485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.603485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.657623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.590942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.671326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.581757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.488495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.220428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.076691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.918274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.740021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.387238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.183899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.751770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.357697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.893158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.296722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.946350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.443024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.894165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.290131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.662506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.845642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.884827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.996490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.052185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.109711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.056335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.007843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.846893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.724182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.589447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.379761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.131927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.858948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.501984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.173798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.736420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.342468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.835907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.312164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.742188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.136017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.512756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.864014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.190582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.483734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.765656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.993591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.207977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.392242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.547180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.700226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.834076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.957886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.079742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.186035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.280792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.381836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.482910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.588470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.690552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.805054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.926575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.054199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.226746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.406128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.591888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.813416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.068146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.321472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.596100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.939117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.270142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.662109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.135010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.587891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.162292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.738739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.379150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.043121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.827606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.579285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.344635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.318939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.186798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.170807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.197144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.257019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.364655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.528473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.842499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.131165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.747650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.384247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.843903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.572937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.143463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.841370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.724304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.690613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.514008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.456940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.485199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.457184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.587341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.647369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.624939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.756805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.140350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.540283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.999268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.520935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.110321] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.680450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.278748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.881897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.581696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.335205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.124725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.894104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.697632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.710236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.769409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.818146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.806885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.174438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.136505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.106781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.962341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.000488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.083740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.372009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.549774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.708862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.756439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.799866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.096802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.329712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.400696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.572021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.620178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.846802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.937195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.134216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.326416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.487183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.711060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.835693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.846008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.397644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.188477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.833313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.503357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.854919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.170044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.385803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.004211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.288452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.437378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.722656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.968689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.887817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.048340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.201721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.318176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.322327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.478088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.314148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.582214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.721680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.960876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.860657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.103027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.240601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.148987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.113037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.827942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.306152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.048523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.757446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.189697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.531494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.062256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.545410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.047607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.250793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.514221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.690063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.790405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.913757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.100586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.074097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.060059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.009705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.937195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.992310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.896179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.843994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.551819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.268066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.071716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.470093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.063049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.432251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.750183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.943787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.314270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.405640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.524597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.550171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.441833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.329712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.135254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.942017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.708435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.445496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.173279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.802246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.470581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.161743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.816650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.539185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.158325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.761841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.325562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.861938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.383728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.909546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.432251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.935913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.520935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.107605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.634216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.205566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.709351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.286987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.822632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.438477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.061096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.743469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.395935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.045532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.715088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.393188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.138550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.892212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.645203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.430176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.206299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.114319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.872925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.897278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.890503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.881958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.970947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.085938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.111633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.403809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.680908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.925964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.055725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.169556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.328552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.655334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.008972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.275146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.522278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.784302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.211365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.646912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.065369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.429810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.999207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.492188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.960449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.460510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.977783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.467773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.032593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.778442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.604675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.422546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.367065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.230835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.037476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.175415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.254639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.153137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.609192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.547485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.467163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.403442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.345093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.383240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.567261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.897766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.335693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.672974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.009033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.374817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.972046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.603027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.286377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.732849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.426453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.958862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.563477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.259094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.838562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.683228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.180542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.855103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.069275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.683472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.497314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.360107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.028625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.961975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.765015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.684204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.674133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.682312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.721252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.469299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.564697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.668701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.357239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.248108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.169250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.054871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.122803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.188904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.246582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.296631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.337463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.340515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.349548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.054260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.796326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.108704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.477234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.294312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.586792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.401550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.985046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.511108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.234863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.787842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.375061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.138062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.876038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.494751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.802856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.996704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.432983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.977295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.067383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.112427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.233459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.552856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.557617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.681335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.688110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.588196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.687012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.733032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.689880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.537354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.361816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.201355] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.087341] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.950684] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.808044] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.489929] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.164246] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.905396] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.609741] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.215698] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.824524] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.318542] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.695129] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.193237] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.781494] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.138428] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.465210] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.754150] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.004639] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.206421] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.236572] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.159180] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.045532] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.922241] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.699463] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.421631] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.050537] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.654053] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.148315] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.579224] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.925659] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.170410] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.347534] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.408325] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.370605] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.966064] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.534912] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.012085] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.354126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.536865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.627808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.423584] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.232300] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.919189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.289795] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.532471] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.643677] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.132446] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.808594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.341248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.749023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.332947] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.815430] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.764648] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.961914] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.019287] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.719727] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.049988] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.366943] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.485107] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.299500] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.844482] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.442749] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.987061] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.615906] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.463867] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.266785] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.867126] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.422546] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.892700] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.702454] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.997742] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.863831] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.504761] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.663208] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.687317] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.130676] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.909424] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.194641] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.195313] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.255005] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.403748] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.815918] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.774414] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.829651] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.785522] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.356445] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.132874] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.954895] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.196716] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.752869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.462036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.572693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.959839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.660767] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.708801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.104858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.916382] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.161804] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.753662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.784790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.398682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.081055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.390808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.888977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.642395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.587036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.285095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.393433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.268250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.262695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.302979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.525696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.496155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.434265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.367126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.551270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.520569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.444885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.446777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.920776] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.763672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.710205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.920288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.174622] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.430237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.404419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.275635] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.044067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.894043] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.713013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.009644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.183105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.850342] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.196289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.364502] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.004028] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.167969] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.056641] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.836670] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.616577] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.421875] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.856812] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.106323] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.418213] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.027588] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.770508] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.016235] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.341431] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.119019] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.094604] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.097534] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.745728] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.065552] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.518311] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.922119] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.302124] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.033569] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.453369] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.893188] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.256226] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.339233] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.322632] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.088501] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.462891] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.946777] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.592163] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.947754] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.340210] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.394043] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.505005] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.163086] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.855713] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.245605] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.129883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.771118] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.412598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.255249] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.121094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.538574] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.209106] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.311523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.251587] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.882324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.401001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.461426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.583618] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.492920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.175049] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.565063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.809082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.741943] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.547974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.075195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.334473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.330688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.070679] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.546753] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.724121] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.683350] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.326172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.663696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.596436] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.480835] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.134033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.478882] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.708862] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.716187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.560547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.726074] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.948242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.786133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.231079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.244995] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.895508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.639771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.948486] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.915527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.270630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.842285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.145020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.270386] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.430786] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.503784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.762573] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.707031] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.170288] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.431152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.377930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.885742] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.129272] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.301758] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.035400] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.998047] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.206177] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.312256] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.260498] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.986450] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.686035] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.034424] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.652954] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.499023] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.450928] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.582642] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.679443] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.142334] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.452026] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.648071] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.355103] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.757690] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.435181] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.887451] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.602783] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.056702] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.571106] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.337097] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.530273] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.017944] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.183594] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.514282] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.645996] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.150696] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.811218] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.793579] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.298096] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.122314] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.865173] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.348083] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.124695] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.348206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.456543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.155884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.568726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.987915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.089722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.379272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.493530] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.197998] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.702393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.909546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.811462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.482666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.763062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.814514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.483093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.883667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.629333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.796936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.278076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.674805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.612244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.689941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.035950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.549622] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.808716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.004089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.789978] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.404297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.079163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.959839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.404663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.824341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.668762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.940125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.383423] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.346985] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.776794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.325378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.002808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.891968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.804321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.960083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.546753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.818481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.282104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.353027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.255005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.067017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.797729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.071167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.470337] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.203979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.843872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.395386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.198486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.939209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.926025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.476074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.487671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.942993] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.205322] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.254150] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.353271] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.439331] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.744507] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.565063] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.411011] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.848877] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.403198] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.528931] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.545288] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.157837] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.074097] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.717651] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.470215] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.464966] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.151978] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.466797] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.229614] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.876099] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.387329] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.455444] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.223145] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.533691] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.455933] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.357910] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1492.717285] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.332886] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1504.422241] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1509.312256] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.216187] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.123657] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.656860] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1527.921143] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.202637] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1536.188599] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.057373] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.135010] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.125488] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.712280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.964111] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.188599] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.405884] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.446899] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.195068] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1569.862427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.344849] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.760986] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.879883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.833130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.702026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1582.441895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.982666] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.485840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.810791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.000854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.947021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.730957] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.402466] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.923218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.281372] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.472534] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.484741] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.284424] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.860840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.222778] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.395508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.162598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.728882] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.041504] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.088013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.903564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.317627] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1575.534424] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.591797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1569.010254] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1565.196655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.102783] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.017212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.177490] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.645264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.205322] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.605591] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.818970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1530.094116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.856323] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.966553] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.333374] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.036499] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.060791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.569702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.409668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.785034] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1457.993408] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.583130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.050415] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.223633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.120850] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.428711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.834351] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.261841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.821655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.955811] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.227051] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.086426] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.402100] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.828857] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.289429] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.169434] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.540894] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.605103] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.743652] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.188477] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.647095] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.947388] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.054443] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.317261] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.152466] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.080933] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.823120] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.519775] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.201660] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.694092] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.020874] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.389404] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.828857] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.094177] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.896118] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.403748] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.750977] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.475098] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.903137] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.444275] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.655396] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.187500] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.366089] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.123169] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.941223] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.404480] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.061768] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.430542] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.614502] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.710388] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.430359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.887268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.425476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.123230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.710693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.014893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.330261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.176270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.349731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.076111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.978943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.703888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.184448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.272888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.133911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.019836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.424255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.597839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.882751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.639984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.561035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.646484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.021271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.380585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.920349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.623016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.461975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.419983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.423920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.693542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.337524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.600159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.461456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.832184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.023163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.094330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.678894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.308105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.131470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.246460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.546021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.855469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.615967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.351685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.768860] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.554077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.836548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.078979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.556763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.841980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.317078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.444397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.299316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.883606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.150024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.728333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.934021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.339172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.938538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.776245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.958130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.042908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.828796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.478333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.568115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.172913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.952209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.812805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.352173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.353943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.104858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.004822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.061768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.987183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.290771] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.321289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.183960] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.029785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.150024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.987427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.110352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.170288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.288574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.115479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.455811] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.660034] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.974731] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.865601] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.115967] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.974121] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.711304] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.068726] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.288086] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.137695] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.746948] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.277954] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.833984] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.398682] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.983521] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.792969] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.914307] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.257568] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.856079] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.365356] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.058716] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.716187] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.971436] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.796143] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.040649] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.083008] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.761230] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.757813] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.624023] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.899902] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.609619] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.110596] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.897827] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.306763] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.182861] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.892578] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.167236] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.037964] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.496460] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.528076] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.138794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.341797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.186768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.524170] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.501953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.179199] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.300171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.093994] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.901123] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.954590] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.693604] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.924438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.281372] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.116089] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.822998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.332764] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.937988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.959595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.347778] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.824097] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.487427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.673706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.797119] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.628174] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.091797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.973999] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.066162] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.956177] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.268311] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.261963] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.993896] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.026733] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.151489] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.238403] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.139404] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.827271] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.069214] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.755615] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.091309] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.891479] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.351563] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.090942] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.085449] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.389404] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.341064] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.441467] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.906616] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.430786] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.357239] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.117126] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.012024] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.999207] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.317566] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.997681] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.356628] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.175476] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.463318] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.017700] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.889709] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.384460] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.087708] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.949280] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.585510] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.035706] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.238647] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.936279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.507202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.934875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.625122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.899963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.671631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.984802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.856384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.692078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.792542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.437866] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.008911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.301147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.855682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.979919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.522888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.789307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.848145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.613800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.505737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.047882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.297211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.974579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.269440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.872314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.691010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.630463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.844177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.264252] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.955536] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.084412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.348969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.838074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.314941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.516602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.720764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.985535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.729004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.063171] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.618927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.563599] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.610687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.368347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.585052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.209351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.390320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.065460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.837036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.459869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.093781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.238831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.032410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.141724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.876404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.112427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.741638] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.987183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.589600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.096008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.611145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.823181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.970093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.940613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.293701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.248108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.932495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.119446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.874756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.610657] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.634399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.482727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.854187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.580322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.955994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.483521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.927490] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.829651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.148987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.248291] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.527222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.468201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.966003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.413330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.673340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.136230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.213135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.208618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.847656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.454956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.343994] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.175049] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.255859] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.372681] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.496826] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.605103] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.218140] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.572754] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.486328] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.976807] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.580444] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.468872] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.030762] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.150879] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.077026] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.537964] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.692871] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.927246] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.323242] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.078857] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.025391] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.870361] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.484253] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.423096] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.064941] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.481567] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.784058] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.551025] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.048950] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.619141] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.493164] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.964478] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.417480] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.289429] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.745605] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.887695] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.567383] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.964722] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.887573] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.247559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.088501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.815552] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.006958] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.751465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.162109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.115479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.904419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.991211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.114502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.270874] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.805176] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.031128] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.254395] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.561035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.470703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.100952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.208252] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.006348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.456421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.488403] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.234253] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.779907] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.370605] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.083374] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.237061] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.116943] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.584595] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.013550] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.820801] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.740356] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.666138] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.830872] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.003723] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.016724] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.626831] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.885925] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.561462] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.796082] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.979126] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.080750] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.486206] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.691162] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.065308] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.724121] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.087402] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.915710] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.834839] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.636780] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.279053] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.973694] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.353210] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.659790] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.066284] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.299805] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.370300] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.654480] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.846008] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.338928] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.401733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.096252] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.872559] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.595947] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.046509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.354980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.554382] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.715118] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.646881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.461731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.429230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.431732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.570190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.496613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.218994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.673370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.696198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.440277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.367249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.325562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.785995] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.237839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.019363] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.683289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.082764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.107986] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.539627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.123688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.074829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.196777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.676086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.894958] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.652878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.722107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.612946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.779633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.493042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.888031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.004517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.295013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.169281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.512909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.705017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.098175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.618744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.467590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.383911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.950562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.980957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.105591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.816437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.672333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.727478] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.866150] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.866699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.004578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.160156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.736938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.801880] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.666199] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.742126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.655701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.060974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.683228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.134399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.285034] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.257263] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.850769] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.689453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.442810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.270264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.893188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.144226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.498779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.562195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.072754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.701050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.768921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.520630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.901611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.861389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.003540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.240479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.290649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.886353] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.451233] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.511047] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.165466] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.987976] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.899475] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.300964] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.153931] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.311523] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.508789] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.019897] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.993774] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.688232] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.548096] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.925659] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.895874] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.633179] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.870117] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.621094] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.908936] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.678833] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.009644] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.859619] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.250000] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.180542] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.646118] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.157593] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.306763] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.457153] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.076904] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.420654] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.479736] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.700928] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.574341] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.348267] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.921875] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.428711] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.414551] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.640625] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.905640] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.026367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.601318] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.218750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.881470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.660278] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.760132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.959229] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.380615] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.132080] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.177734] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.165039] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.872925] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.536865] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.604675] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.473083] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.737671] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.975281] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.440063] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.216736] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.539429] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.213501] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.152222] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.263489] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.922729] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.304199] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.861938] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.200317] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.464294] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.078247] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.369446] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.945923] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.137817] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.782104] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.030273] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.416626] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.570068] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.334290] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.319031] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.234680] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.247437] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.542786] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.446228] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.142273] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.949066] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.296753] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.324524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.618530] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.374298] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.093872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.926025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.302002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.523163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.488068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.975067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.188965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.986053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.885468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.480148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.186081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.713104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.776749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.445770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.307022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.715454] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.494873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.544006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.241913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.520905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.821800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.777153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.208916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.560577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.912788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.378731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.880287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.360733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.861786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.944344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.437019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.255905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.772491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.960236] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.624725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.416946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.403046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.288193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.244507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.992432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.212463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.867813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.972122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.729309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.731659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.061676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.869171] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.164185] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.943268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.315155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.178284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.834564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.890015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.403381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.211304] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.032349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.302246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.463898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.270782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.525452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.244690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.202576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.904785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.644470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.728394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.952942] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.137878] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.801575] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.775696] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.287292] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.867065] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.924622] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.342041] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.087585] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.550659] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.482361] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.866394] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.699890] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.369324] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.188599] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.960022] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.743286] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.897888] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.559753] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.041748] [T/O: true ][Cruise: false ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.552063] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.606567] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.160522] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.206055] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.281006] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.545410] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.151001] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.510132] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.325928] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.625977] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.059326] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.062500] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.488403] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.454590] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.002075] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.147339] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.852539] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.130005] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.880005] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.336670] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.157959] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.744019] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.858154] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.539917] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.818970] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.988647] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.345215] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.401855] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.874146] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.843506] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.719727] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.732483] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.111816] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.333984] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.915588] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.860107] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.242615] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.561096] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.819702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.152039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.743530] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.097656] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.294678] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.839661] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.725769] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.733887] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.975708] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.534119] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.054565] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.343262] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.137634] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.769043] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.768921] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.336426] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.479004] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.658020] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.992432] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.040344] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.200806] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.795105] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.882629] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.387390] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.060730] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.170898] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.861877] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.214783] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.924072] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.432129] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.649353] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.631958] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.418701] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.256042] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.073486] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.264740] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.127594] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.443878] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.948273] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.876526] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.139832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.027283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.963898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.757172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.706421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.225067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.211670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.052948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.062592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.452789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.038483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.660843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.977448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.788177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.312683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.941971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.439631] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439682] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439741] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439711] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439684] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439661] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439796] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440912] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442114] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442839] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443686] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448242] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449720] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450245] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450483] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450174] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446384] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443865] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441954] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439962] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430902] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418879] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410925] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406973] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397291] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394634] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394772] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399887] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402020] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403923] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411348] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413492] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416216] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419998] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429529] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434423] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439314] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449610] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455360] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459492] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459368] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458775] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460339] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465399] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471346] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474001] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475430] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475035] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472315] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464901] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458765] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457067] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456474] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456530] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456764] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457422] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458410] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458666] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458836] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459398] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461483] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463169] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466965] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467825] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467661] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467352] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467501] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468937] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470476] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473436] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474623] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475824] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476946] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477976] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478699] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478836] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478430] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477858] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477467] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477835] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.497311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.501848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.506660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.512230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.518190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.525497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.534386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.542437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.549770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.557903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.566769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.574848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.583298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.590462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.597857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.604383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.611076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.618773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.627781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.637968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.651590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.669500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.691742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.722090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.757450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.805655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.865074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.937466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.019033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.114546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.224949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.354752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.519257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.684982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.884586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.125925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.372089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.662210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.010994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.368355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.791510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.234770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.709587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.199064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.737562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.385475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.025446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.712828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.491600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.268591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.117435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.135284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.209925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.365946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.538643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.715393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.112144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.524101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.047504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.715370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.393578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.140480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.904682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.800613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.849087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.039806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.309090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.492226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.886444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.382626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.030224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.437019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.892906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.404976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.921623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.047989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.213890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.341789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.351189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.533157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.107071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.598320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.715477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.592430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.638390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.796791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.536652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.064064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.454613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.845421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.353439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.856583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.348846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.122498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.731812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.332596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.263672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.173981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.928040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.584167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.186203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.692093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.884567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.871078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.206543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.869919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.213577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.967743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.165726] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.541702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.572067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.595215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.620377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.346542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.477127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.894836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.822006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.422516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.366501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.684692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.131821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.771301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.495743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.022781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.792480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.138458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.816528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.156006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.066010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.089142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.918671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.593872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.117645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.759277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.182281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.485229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.840210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.337280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.572052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.826569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.638885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.185089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.700531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.147369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.882263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.605072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.805328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.146027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.393005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.783569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.889160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.104095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.092224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.910736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.856506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.727814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.365265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.936188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.376434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.761505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.101898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.417969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.662476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.846710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.102295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.197083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.270233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.257751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.219360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.107727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.045776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.773712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.453217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.220795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.912689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.454742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.036652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.552856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.021637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.399933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.791901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.116028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.425568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.673981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.930267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.139343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.305817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.444305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.562134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.661224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.737915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.806091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.856873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.895721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.926788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.954132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.972595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.989960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.007385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.029053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.053802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.085907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.133484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.189301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.257507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.348083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.449066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.561707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.708069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.865814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.056122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.291656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.558960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.840454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.162109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.508301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.847076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.206360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.642639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.121216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.588318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.101105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.664185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.309113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.933350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.618073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.354767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.198517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.977936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.819489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.735992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.767853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.719055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.745270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.760986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.015015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.318329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.590088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.927216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.348114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.773956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.246002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.772461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.282684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.842957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.522339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.323486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.093201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.941437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.748901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.683960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.822479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.944458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.376953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.600769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.049774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.550690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.155304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.637115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.037476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.559967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.367706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.119812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.863770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.748016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.955261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.680206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.750000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.790863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.350525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.388184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.467377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.471466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.630920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.740479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.791016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.125763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.317963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.518005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.140778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.292450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.732941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.137695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.160004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.591614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.035095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.496033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.881287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.456665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.035339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.491760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.973267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.385132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.596741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.694824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.060913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.267212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.616455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.905701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.365234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.593140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.064392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.446472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.562012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.484436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.615112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.767883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.796387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.814453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.946167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.083008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.050537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.023254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.966003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.914673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.766724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.857910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.597900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.346802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.206421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.990906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.606079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.221436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.883057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.469910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.028259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.480164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.063049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.610535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.901794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.256042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.509399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.544739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.564331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.539368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.735535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.792358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.752075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.580322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.441650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.492737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.318237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.200439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.029175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.732727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.369263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.986938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.554626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.999939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.375488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.733643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.124451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.419006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.778137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.044495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.202026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.481567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.644592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.774231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.827454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.966125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.041992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.096191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.084473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.046387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.045776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.032898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.052368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.938599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.817078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.719055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.574951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.410400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.203186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.918213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.610107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.341003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.065918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.747925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.375610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.986877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.584229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.180908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.820190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.410217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.972717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.498230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.016113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.492249] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.944580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.409973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.880920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.387817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.887451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.328979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.781738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.219910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.674072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.123169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.548462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.996216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.445984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.884521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.335083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.806030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.330933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.877808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.391052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.912598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.449768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.034851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.631653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.309570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.023743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.738770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.475464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.243042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.080505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.977539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.124634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.051880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.997620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.978088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.985413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.164246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.327087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.507568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.769043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.067444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.401611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.723755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.101501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.703918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.130432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.591431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.197510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.807983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.498474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.352173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.323853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.258728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.118530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.948608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.754944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.905029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.092896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.699158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.032104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.344543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.635193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.139343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.332397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.544495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.133911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.757690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.283875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.883057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.585083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.889465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.454468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.723206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.138000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.929443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.776611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.641663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.541992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.418762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.350830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.126831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.016785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.937988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.896484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.883057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.866760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.856628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.604919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.309204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.163330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.161621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.174683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.984924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.984680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.983643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.074707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.827759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.544373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.341553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.046204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.939575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.990234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.939758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.907898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.779846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.660767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.604614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.501892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.090698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.043396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.974854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.888062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.770142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.551941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.332031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.180847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.019897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.851501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.421082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.108032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.807739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.590759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.159241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.710876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.379700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.869934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.576965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.906128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.489685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.845215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.387939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.816040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.130188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.432739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.505981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.761841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.184082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.357971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.528564] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.665955] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.773254] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.684753] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.842773] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.902039] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.703491] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.616089] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.563354] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.510315] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.258362] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.179321] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.044556] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.756226] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.205200] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.763184] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.341553] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.737061] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.086792] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.257202] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.436401] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.431763] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.367798] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.221802] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.958008] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.613525] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.158081] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.604004] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.943359] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.169067] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.286621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.284790] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.145020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.884521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.475708] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.936035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.183960] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.344971] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.318359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.136108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.744263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.237183] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.668823] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.882568] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.862305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.877686] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.761475] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.643372] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.334839] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.788635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.999695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.098022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.028076] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.112366] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.575317] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.153748] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.402039] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.965454] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.429016] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.691345] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.851379] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.948608] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.685181] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.338379] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.100525] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.585999] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.300049] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.775940] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.331177] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.055298] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.330261] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.396973] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.038513] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.374146] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.813232] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.373657] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.506653] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.304749] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.988220] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.140869] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.450562] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.578247] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.003784] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.483398] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.574402] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.528259] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.730225] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.410400] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.298767] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.420776] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.693237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.307800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.388916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.690613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.283997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.260071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.640686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.371887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.443787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.937683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.939209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.240112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.889038] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.885315] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.059875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.333374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.939270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.155273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.923096] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.079102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.597046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.363220] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.801392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.587158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.677917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.338196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.641846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.444824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.591858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.741089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.231140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.485107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.196289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.195984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.548462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.974365] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.276123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.700439] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.553101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.430908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.789673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.016724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.953735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.742188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.736328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.872192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.635376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.440552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.224976] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.210205] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.048096] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.846924] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.936035] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.841797] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.340454] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.300537] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.878784] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.287964] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.709961] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.250732] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.125244] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.613647] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.645508] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.652100] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.544312] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.722290] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.486328] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.265869] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.770264] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.220215] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.591919] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.782227] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.947144] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.219849] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.081543] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.796021] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.375732] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.033325] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.913086] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.454712] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.573242] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.872314] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.011597] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.903442] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.677612] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.440918] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.108398] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.718506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.755859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.328857] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.810547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.716919] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.422241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.835571] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.983765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.125488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.031738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.960938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.555420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.937744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.029785] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.923096] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.754517] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.396484] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.632568] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.730591] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.641479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.214966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.578003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.674683] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.548950] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.214478] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.664551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.905151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.887817] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.661865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.189331] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.540649] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.396851] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.281982] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.977905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.423706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.635254] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.406616] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.863647] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.274048] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.731689] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.088623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.934448] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.486694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.759644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.456299] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.696655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.949951] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.217529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.615845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.378662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.093506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.239258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.317261] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.190000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.180000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.150000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.264328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.441046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441057] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440958] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440884] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440945] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441393] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442345] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443678] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448484] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450548] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451172] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451826] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450369] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448900] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448105] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437555] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434484] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431526] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416641] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397457] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395761] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396326] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405504] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411173] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413363] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416489] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419842] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429169] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438437] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443617] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448318] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457581] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460821] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462408] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461491] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460245] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461462] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463402] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465849] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468576] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471041] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468748] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455833] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454359] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462976] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465633] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467258] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469658] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469967] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470133] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470751] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472187] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475147] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476631] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477139] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477510] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477634] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477955] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478956] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480703] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482876] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485147] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486563] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.526049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.532974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.539238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.543829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.547380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.551643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.556913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.563263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.570662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.577911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.585745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.595545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.606541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.622534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.643175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.670362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.705795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.752602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.808229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.872545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.951595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.049234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.154869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.286915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.438818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.609417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.827919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.075253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.333740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.616825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.978460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.335342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.755722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.229397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.744059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.254303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.954121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.586624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.352255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.186447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.047440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.982838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.939629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.015079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.140945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.386690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.680412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.099869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.605145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.158791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.715805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.296021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.110462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.054985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.160545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.279755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.368847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.660088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.048397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.270638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.781940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.107433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.578308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.522430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.153610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.772339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.503876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.445175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.783783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.112213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.340218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.906090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.555717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.715790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.622559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.361176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.795799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.296211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.684128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.482422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.039345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.565140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.370163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.544434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.411438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.454498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.631653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.618851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.762894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.274979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.887787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.765579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.581741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.043900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.163925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.579010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.684341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.830673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.190826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.889786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.990082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.773254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.842392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.759491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.210464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.391190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.188751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.217545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.100952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.988052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.790024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.702911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.314941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.037964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.624542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.627319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.954163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.629639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.986908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.661102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.009735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.252411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.642487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.003998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.109131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.905579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.222443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.058502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.944061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.008636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.002380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.848114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.600067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.287048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.866455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.389862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.746613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.091919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.525665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.154633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.356506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.582367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.577148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.400421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.414368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.466827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.253204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.901184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.465973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.892975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.282806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.840881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.191010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.460480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.794861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.976379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.075897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.001862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.854279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.730774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.554504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.241180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.935791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.557373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.161163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.721802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.206360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.027313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.072327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.101807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.119965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.129211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.131989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.131866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.131134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.131561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.135620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.144196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.161743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.187225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.227173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.301758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.385864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.495026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.621735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.778259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.970001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.172760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.415131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.689301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.991730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.408600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.830231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.261810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.728760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.233765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.790436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.408325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.222443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.981049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.747528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.640869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.509827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.470947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.533203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.555695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.566956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.585510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.815857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.977203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.185883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.446014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.693359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.054779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.496613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.102020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.781738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.345154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.973816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.880676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.757568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.069977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.241852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.116547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.497131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.833832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.229401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.672577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.196838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.930969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.408966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.884430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.071136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.859894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.665405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.390533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.308807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.357025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.442719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.785034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.956940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.198395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.695068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.804474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.277557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.486938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.104797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.812531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.440369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.821442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.895172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.087646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.673431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.035339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.484558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.196106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.815002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.275024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.747192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.088928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.126831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.725708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.282593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.906311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.419800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.855774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.886169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.489502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.094360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.759399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.256042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.747803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.279602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.796326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.999817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.753784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.378540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.315002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.529663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.388733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.840881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.177063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.508484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.063721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.321289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.529907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.716736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.963867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.200928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.187805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.846130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.785156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.725159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.875244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.718140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.567383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.753174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.338318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.642395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.360901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.780518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.957214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.001343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.119629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.040833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.910767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.733398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.584473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.472595] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.420868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424997] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428082] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430489] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432354] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433697] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434935] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437912] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438862] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439869] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440887] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441896] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443735] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444746] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445650] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446749] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450880] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451889] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451130] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449842] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446444] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445156] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443604] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438768] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428448] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424408] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420115] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412016] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407213] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402683] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395956] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397629] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402626] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405464] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407358] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410772] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412748] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414972] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421116] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425488] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435774] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440805] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446039] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450634] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454874] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458662] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460739] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461359] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461252] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459929] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461664] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472183] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475874] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473602] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466520] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462887] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458353] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459223] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460857] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461975] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465626] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468611] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468943] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468832] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468246] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468683] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470856] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471642] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471968] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472630] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473648] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474834] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476189] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477457] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478415] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479057] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479000] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478626] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478310] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478470] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.500233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.501701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.504604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.514103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.519663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.525948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.533276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.541014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.548952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.557070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.565212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.573858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.582623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.591028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.599001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.607424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.616550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.627123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.640438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.655600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.675859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.700624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.731697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.770830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.822119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.884356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.960611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.047724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.154245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.268282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.408066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.577829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.770525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.978130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.213531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.489960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.775450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.087957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.455072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.810867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.198202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.672411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.127497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.641542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.266138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.895493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.542334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.258398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.108591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.976725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.877815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.842611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.855675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.968843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.201130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.578499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.972233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.403526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.919315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.641514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.214523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.870293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.807686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.772583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.829182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.937084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.076927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.332901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.507317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.040440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.636517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.158043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.784470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.578453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.341896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.171555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.282204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.233437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.270576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.419403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.654541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.663216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.626556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.786987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.222458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.316711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.658539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.008522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.310524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.327911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.573112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.056389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.217331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.507324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.859665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.045959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.309692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.633926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.045135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.515442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.258392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.671921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.266373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.047073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.481979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.746780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.762650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.794983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.815720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.858398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.142517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.974304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.946075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.806686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.069382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.386780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.103378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.955933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.994186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.038589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.121552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.210602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.245560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.007156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.703705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.385345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.062073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.294312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.169464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.501129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.744049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.928864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.307281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.128876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.226135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.999908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.859528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.627045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.615509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.280396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.839844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.450378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.047821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.632141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.293549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.964905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.487549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.034973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.424347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.882690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.219818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.229889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.204956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.237122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.388000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.318390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.218781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.050842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.958008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.594055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.361572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.971619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.494232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.004974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.496246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.787933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.142487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.412354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.612000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.613739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.578522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.607330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.458374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.327911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.160339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.903656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.641022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.263672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.905151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.459381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.966705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.464661] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.888306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.250854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.586853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.885040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.138763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.363129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.578308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.756012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.925690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.053375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.165222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.252930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.322418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.376892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.416382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.445984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.467865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.480255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.488800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.495026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.500702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.510010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.522888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.543182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.573975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.612030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.663086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.732819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.820374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.925629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.066467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.218079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.411987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.621185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.857361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.139557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.448944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.774506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.166168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.559692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.983551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.437653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.997650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.580109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.189331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.797211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.501801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.190002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.941650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.790802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.618225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.554413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.553467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.528778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.597198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.707184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.915314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.062408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.252563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.713837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.010132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.315735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.700500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.179626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.669098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.214539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.856232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.380127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.157990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.023926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.844910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.902557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.805511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.922882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.934998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.962555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.029266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.521912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.618683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.873840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.119202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.504578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.924866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.308044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.830872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.421875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.244019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.946838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.004272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.049927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.976654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.955933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.146515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.111481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.354370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.407715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.086731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.478149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.742981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.268890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.931152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.492035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.148346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.584045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.056580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.097778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.510620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.949585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.549744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.620300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.365662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.666382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.384094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.298645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.658508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.973389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.972412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.027466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.766357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.524231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.196472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.111816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.898315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.436401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.046387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.336487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.834351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.214661] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.665894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.079102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.979797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.581421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.732666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.344360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.018921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.151611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.817200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.582214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.348267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.060547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.764954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.485657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.235901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.227905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.995728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.539368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.105103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.603333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.163574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.507751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.953918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.320374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.642944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.142639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.252136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.372314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.298096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.133850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.899841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.637878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.474548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.153381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.915710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.635742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.423035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.920532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.498901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.031311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.492249] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.863647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.332581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.593811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.885132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.213928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.490173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.682556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.775085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.950378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.047180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.162720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.210754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.230225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.096069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.947021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.800110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.817383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.687988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.533997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.370544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.177185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.086853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.870911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.590759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.379883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.093506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.842041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.486938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.200500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.906921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.508728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.116333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.717285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.314148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.915100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.530701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.088013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.623047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.227600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.758057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.288513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.894836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.421814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.021118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.583435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.148743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.691772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.282410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.897339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.407776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.932068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.532654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.132751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.737793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.359924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.985962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.685303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.347046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.053040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.825134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.587585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.400146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.237305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.065125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.947815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.810242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.705811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.649658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.664490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.699829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.793762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.904724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.087036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.280640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.606384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.890686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.281616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.673889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.163513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.670654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.243164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.826538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.599182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.313293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.026794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.870911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.805115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.726257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.700745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.878479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.080200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.328857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.474976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.778748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.925903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.268250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.755249] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.236755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.690369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.255493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.860962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.539795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.114197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.857056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.674133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.614685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.642273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.538025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.480713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.455322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.464478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.260742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.152832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.197510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.989502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.742981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.418091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.186890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.188232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.251526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.342590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.323181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.260315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.176636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.262573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.233032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.364197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.387329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.365967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.185547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.207458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.258362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.864624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.537720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.479004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.203308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.255371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.091919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.931763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.766113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.546265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.214905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.020264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.761780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.632080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.464355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.395447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.971497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.676819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.537720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.333801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.026733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.685974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.201599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.780579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.463196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.828613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.185791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.720276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.081177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.547302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.855408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.325073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.803406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.263733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.676575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.040527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.411255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.763733] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.051819] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.237366] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.285217] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.323853] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.475769] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.518616] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.562439] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.524658] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.580200] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.801636] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.766174] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.816284] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.721069] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.596680] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.407104] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.121826] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.897827] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.501465] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.936401] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.511963] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.747314] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.930054] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.031250] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.073975] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.149414] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.050293] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.782593] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.510864] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.034058] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.458496] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.765259] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.958130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.031616] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.983765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.808472] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.517578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.043579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.444580] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.690674] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.796997] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.720337] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.548706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.109131] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.506714] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.736084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.947998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.771851] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.294434] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.917725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.363403] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.378296] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.577026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.547363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.129517] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.809265] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.241638] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.664551] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.686646] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.675476] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.603760] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.606140] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.112366] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.613525] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.153503] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.595093] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.914368] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.934570] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.146301] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.307617] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.430420] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.649719] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.903503] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.173828] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.483276] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.706909] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.026245] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.459167] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.908325] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.184998] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.928406] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.773193] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.682312] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.896179] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.173828] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.683472] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.450745] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.355347] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.556702] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.971924] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.759155] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.744995] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.163025] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.850098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.849670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.175293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.868774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.954041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.425659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.272583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.441284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.978333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.010498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.322937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.028381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.310608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.679810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.257019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.167908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.689087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.419067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.296997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.351257] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.417053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.683899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.455994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.220337] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.365540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.348938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.662537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.194153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.137451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.586487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.256592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.625000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.162354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.064392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.925537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.980469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.863281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.648193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.630371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.815186] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.815308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.087158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.033691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.958984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.066895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.372803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.220947] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.128174] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.180420] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.004639] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.054565] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.279907] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.952759] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.966431] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.920044] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.784180] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.099365] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.457642] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.986816] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.449463] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.734863] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.764526] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.539429] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.260010] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.299561] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.390137] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.385132] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.261841] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.748901] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.950562] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.242676] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.414551] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.311523] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.051025] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.675171] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.292969] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.828003] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.345581] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.614990] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.633545] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.515625] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.504883] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.699341] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.319580] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.971558] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.763550] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.448730] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.324097] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.564941] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.808228] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.582275] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.544189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.820190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.961548] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.915771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.690674] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.390625] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.688965] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.882935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.730225] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.355469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.814575] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.251831] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.298218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.198608] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.886597] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.399170] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.690186] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.577515] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.510132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.561646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.041138] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.420288] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.525269] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.476685] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.861084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.438354] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.731079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.941406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.375488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.797241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.224243] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.676880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.426514] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.420898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.899780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.389404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.389648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.401978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.370972] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.877197] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.379272] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.443604] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.432007] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.147949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.744507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.692749] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.840698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.696045] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.244995] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.770386] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.887085] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.960938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.399780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.920166] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.512573] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.421509] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.460449] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.404907] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.004517] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.788696] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.730347] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.549805] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.572998] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.752930] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.707153] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.943481] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.803101] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.313354] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.072876] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.724487] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.775024] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.767578] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.457886] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.470947] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.325134] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.330261] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.281616] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.613220] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.703552] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.235291] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.281006] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.914124] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.978516] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.003357] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.957703] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.030334] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.619934] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.722717] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.446960] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.635620] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.319702] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.639160] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.464966] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.998779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.219788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.574341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.347534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.483032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.729614] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.483948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.849487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.729675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.542847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.072937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.294189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.139832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.583374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.732666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.577087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.413635] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.668701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.897339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.252930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.084534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.497070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.248901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.301880] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.796753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.968018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.525330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.482239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.427856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.093933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.638489] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.037598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.905396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.545532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.556824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.513367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.923889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.792114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.129272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.635010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.153381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.273682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.050415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.846802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.659546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.407104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.107178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.627441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.368530] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.007935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.783569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.901123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.153931] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.396484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.446777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.503418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.780029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.842163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.329224] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.048462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.950806] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.541016] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.583496] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.174805] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.323486] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.531494] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.724365] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.987305] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.081665] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.837524] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.467041] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.657349] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.532959] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.743896] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.675903] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.239990] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.726196] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.618774] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.433716] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.445557] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.879883] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.397827] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.539795] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.405396] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.203979] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.651489] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.851318] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.045776] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1506.145020] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1510.797485] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.245483] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.750610] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.859985] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1527.840698] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.679321] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.318115] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1538.954468] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.512451] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1545.685181] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.646240] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.523804] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.298218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.038330] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.708252] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.276001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.522949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.727417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.536499] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.051880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.301392] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.994507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1573.389160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1573.506592] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1573.349976] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.855713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.011841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.879883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1569.393921] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1565.591675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.262329] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.739624] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.035889] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1555.250977] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.253418] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.366699] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1545.890991] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1541.500732] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.421997] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.373535] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1529.137207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.812622] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.970825] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.300781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1503.128784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.090088] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.983765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.159668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.397461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.009888] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.666138] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.096924] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.613647] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.724365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.422241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.622803] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.755615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.106934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.101196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.030029] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.468384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.559204] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.690430] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.982910] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.038818] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.104736] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.241943] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.038452] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.019775] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.869385] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.739624] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.267212] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.003052] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.518311] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.460327] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.027954] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.307861] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.854492] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.296631] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.253540] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.583374] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.669678] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.211792] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.456299] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.068115] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.731140] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.668762] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.251648] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.947632] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.640564] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.064697] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.710571] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.368408] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.677673] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.254761] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.222290] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.584595] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.131348] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.178345] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.400269] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.451111] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.153625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.973083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.737000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.804443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.860962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.564941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.281433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.436218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.016174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.004578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.207458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.617188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.115997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.277527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.172943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.996552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.011261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.041473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.873108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.706451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.437897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.207733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.025574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.731781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.429626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.318512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.018738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.612915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.210541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.626099] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.914368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.119904] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.655426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.013092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.567932] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.008881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.537781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.546997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.729462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.008911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.652557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.490662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.233643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.457764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.348816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.470703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.990601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.222656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.775940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.854248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.063660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.072144] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.322571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.529297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.345703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.366760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.495056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.342041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.501404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.792053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.193726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.866028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.749573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.520508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.928101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.948608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.893799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.847473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.339722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.842773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.997803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.771423] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.744568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.585327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.069397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.167419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.694641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.340820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.887695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.222900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.739990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.744873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.005981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.791504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.012451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.454346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.736816] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.520630] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.777344] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.032471] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.183228] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.875488] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.592529] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.595459] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.209595] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.605957] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.848022] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.094238] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.613159] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.969116] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.293823] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.166748] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.464966] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.184326] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.765869] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.172119] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.099609] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.341064] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.023682] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.751953] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.985596] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.788940] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.788452] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.277466] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.298828] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.046265] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.183838] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.020142] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.471436] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.449829] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.043457] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.976196] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.518188] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.596313] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.227417] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.694946] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.666870] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.386108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.709595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.580322] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.588013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.607788] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.494873] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.062256] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.389160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.863159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.508423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.758423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.645752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.478027] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.615356] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.554810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.414551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.714722] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.613037] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.578613] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.790771] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.916260] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.130371] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.108154] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.056885] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.557861] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.147095] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.775635] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.783691] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.713135] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.348999] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.965576] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.018433] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.475952] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.026184] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.568298] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.472412] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.081909] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.646729] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.527405] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.696533] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.083252] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.591675] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.603577] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.158630] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.714600] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.199402] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.928467] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.844238] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.870728] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.615112] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.334290] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.101318] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.232361] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.036255] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.141235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.306152] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.059235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.295319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.982941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.400391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.813385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.010742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.480255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.401611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.371063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.349426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.486893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.661957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.286545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.078156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.372375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.403610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.141785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.445572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.870804] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.754562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.909576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.496445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.510529] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.834549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.472946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.941238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.124863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.223892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.702728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.392227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.888702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.058136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.786514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.940491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.643738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.550079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.000854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.579102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.431030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.711517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.594299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.508545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.987305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.324219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.881866] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.454041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.530914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.613251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.084320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.760223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.578857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.991394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.053284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.299927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.541809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.696777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.608276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.878723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.818542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.112305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.998718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.365112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.502808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.077209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.687195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.007507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.067322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.536255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.708618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.387024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.090332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.345703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.402405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.349915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.225647] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.455444] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.055725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.425476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.226929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.012756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.713196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.264282] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.510803] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.920532] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.421143] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.816284] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.318726] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.925659] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.895386] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.063477] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.260864] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.150635] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.433594] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.711304] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.203491] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.088501] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.081299] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.979248] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.244141] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.783203] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.791870] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.942871] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.647095] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.830933] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.540649] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.555176] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.153320] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.309570] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.027344] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.292847] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.039307] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.438232] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.981445] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.196411] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.941895] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.508179] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.543457] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.869385] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.157104] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.297607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.259644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.968140] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.537109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.601196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.698242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.715942] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.054199] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.395508] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.585449] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.487427] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.912842] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.208191] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.402710] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.699707] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.485962] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.861267] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.294617] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.402466] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.744690] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.535889] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.908447] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.663086] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.434814] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.911255] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.733948] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.554382] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.194336] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.545532] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.089355] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.833435] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.047668] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.237793] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.763245] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.947144] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.574341] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.266663] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.809204] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.283142] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.975708] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.068542] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.466003] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.221130] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.283325] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.825562] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.909302] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.188538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.660767] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.108917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.120178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.784210] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.610138] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.047729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.642090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.613068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.513794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.729492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.519928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.542328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.100113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.319107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.175156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.782257] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.733566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.795334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.974258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.381866] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.383835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.802689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.656509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.151001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.885345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.866005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.026993] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.282654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.671249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.252457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.307266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.385498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.515060] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.294327] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.161812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.217079] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.258434] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.292730] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.319929] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.341833] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.359205] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.373707] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.385145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395741] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418222] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423132] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431135] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434263] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437231] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442316] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444666] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446564] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449999] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450329] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450230] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449888] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448746] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447222] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443520] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441570] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436445] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426195] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417702] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408575] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404652] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401411] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398552] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398561] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403027] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408884] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421515] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436371] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459600] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461761] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459942] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459946] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461233] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463411] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472332] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475151] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476316] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472530] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468859] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458208] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456949] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457090] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458084] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458935] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459877] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460552] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460674] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460835] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461224] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462479] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463648] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467154] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468744] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470358] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470842] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473259] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474316] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475348] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477352] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477991] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479126] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480356] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481531] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482365] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483046] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483412] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483278] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482925] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482584] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482492] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.499479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.505156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.507782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.511755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.516701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.522421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.528418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.535507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.543116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.551926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.559868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.568012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.576653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.584549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.592497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.599508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.606371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.612232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.619875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.629364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.640268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.655886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.676872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.703459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.737251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.782070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.839500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.911108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.995729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.091673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.204071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.350378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.511377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.700262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.465591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.433411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.476761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.585892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.762939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.986237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.248596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.548920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.917587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.355850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.772034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.231491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.660172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.147995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.683792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.214600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.716766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.240158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.761642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.253372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.739578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.214432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.730789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.261993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.803055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.323944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.902786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.506393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.074142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.711319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.381744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.082520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.889023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.702332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.656830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.624893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.726807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.824020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.136475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.651566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.108292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.856659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.685226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.646851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.684097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.044189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.696259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.580627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.673035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.538025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.809540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.020004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.484451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.225037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.050064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.546616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.856430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.447906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.340088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.750183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.437195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.864319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.047119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.565338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.712189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.526306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.476257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.648041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.879913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.392120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.579041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.582764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.870514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.240082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.635895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.348755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.253510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.811096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.026245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.083984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.239014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.755554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.046600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.323456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.844116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.506012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.896240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.800385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.612915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.919128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.456360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.156555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.131348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.361938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.608093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.156738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.959473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.009094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.639526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.832825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.798462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.247681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.994873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.810913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.397461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.110840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.946899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.421143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.097717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.158630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.643494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.000854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.874695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.738647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.477417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.923523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.740356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.697693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.539551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.267090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.964722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.423035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.571228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.578918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.498047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.078308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.315491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.774780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.271790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.260376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.632935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.366211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.293091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.506165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.706970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.647400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.798584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.338989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.825195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.096985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.998474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.657104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.423584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.937378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.221802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.187500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.876282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.415649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.735229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.804199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.614929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.187988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.584534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.672546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.553833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.096680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.451355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.619812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.669434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.235168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.843506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.934998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.903503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.640991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.234253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.766602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.194824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.180176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.762024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.097717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.695618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.923523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.948486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.037354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.182068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.980652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.549438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.022888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.223572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.448120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.548523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.947144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.451904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.502625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.500854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.809387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.169800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.428528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.241150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.637634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.405396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.258362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.339233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.164368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.366150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.553528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.804749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.607239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.731995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.004028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.419495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.355225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.060120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.813416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.247986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.580200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.333557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.364502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.753723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.489929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.523315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.810181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.408386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.314758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.539246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.064270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.948730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.122253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.747559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.564514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.940918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.500977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.444031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.279663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.806213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.508057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.161621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.504211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.202271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.904846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.020996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.591431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.337036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.152222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.544617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.290344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.710938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.693970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.206116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.000244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.105896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.584412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.570496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.428955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.295166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.529724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.284424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.516174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.210083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.334290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.693359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.588867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.162598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.798828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.019409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.248352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.524414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.675903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.545227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.802795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.093262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.677124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.508362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.727356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.237732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.654602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.821045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.616821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.404541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.952515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.363220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.136597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.755920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.665222] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.632507] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.885254] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.454346] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.388428] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.730347] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.535278] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.321167] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.604736] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.883545] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.266968] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.476685] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.547607] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.958862] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.548584] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.729736] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.963379] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.272339] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.314209] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.823975] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.942505] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.655029] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.050659] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.652222] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.064453] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.064941] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.635010] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.283081] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.698364] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.963379] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.890381] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.021240] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.018188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.114258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.656738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.215576] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.575439] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.767944] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.717896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.584106] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.091797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.563232] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.938965] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.132935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.843994] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.375732] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.696411] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.776978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.640747] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.296021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.696655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.851074] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.782959] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.204224] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.494751] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.607544] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.188843] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.419678] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.424438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.170898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.910645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.635986] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.628052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.613159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.388794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.925903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.512207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.829224] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.062256] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.264404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.153687] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.640137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.517578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.142578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.392700] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.661255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.796875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.942383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.962036] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.444092] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.745605] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.500122] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.801758] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.229858] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.343384] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.579712] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.192566] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.761719] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.365356] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.507202] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.894287] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.722412] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.338684] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.052063] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.871582] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.062195] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.451233] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.096680] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.315308] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.077881] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.250854] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.860657] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.902649] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.346558] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.218018] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.473083] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.018433] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.066589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.445129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.854309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.104004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.099609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.143982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.067627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.874756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.621521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.771912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.124573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.687927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.973511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.028381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.017578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.451355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.746155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.915527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.466858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.062500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.998169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.008911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.661560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.834534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.169861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.109253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.501709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.193115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.775208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.251892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.720764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.373596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.295959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.391907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.400818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.842041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.841187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.325500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.029114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.833740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.735840] [T/O: true ][Cruise: false ] +[Elevator: 0.120000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.389038] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.859741] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.930298] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.285156] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.403076] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.296631] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.459351] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.885742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.981689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.670166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.653687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.521240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.852295] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.878052] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.491455] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.942871] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.698486] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.366089] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.323486] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.778809] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.926392] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.995605] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.099854] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.535767] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.772705] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.411499] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.867432] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.117798] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.959717] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.415283] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.510254] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.450928] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.462524] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.039429] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.498047] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.021606] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.945068] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.158325] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.219727] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.285767] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.733765] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.076172] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.665283] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.199585] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.978271] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.036377] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.356079] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.708862] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.843994] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.805054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.215942] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.995605] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.307373] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.669922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.746948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.934082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.005371] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.606445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.420654] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.159668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.501221] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.477295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.346191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.953735] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.414673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.477661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.359497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.477417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.697510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.251465] [T/O: true ][Cruise: false ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.436035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.432251] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.348389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.418335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.347290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.641724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.852905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.049927] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.595825] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.776489] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.940796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.864990] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.688354] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.220337] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.042603] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.540405] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.833862] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.548218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.252808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.172852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.766846] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.290649] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.187012] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.825073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.612671] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.033203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.840088] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.473999] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.914795] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.373413] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.117188] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.506470] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.163330] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.014282] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.756226] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.308350] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.646606] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.501221] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.887817] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.596802] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.859619] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.443848] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.551819] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.036316] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.718689] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.614441] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.864807] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.587952] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.991760] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.278320] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.211243] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.586792] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.221252] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.725830] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.462585] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.203796] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.555847] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.921021] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.485596] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.019714] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.065247] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.938416] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.339172] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.638428] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.391968] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.312988] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.553467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.202148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.403259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.363525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.738770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.655029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.787659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.628845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.137726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.543793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.214081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.911774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.791412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.578339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.787933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.655853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.260345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.600952] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.755341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.663269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.345428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.051971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.821869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.886292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.160400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.527344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.275452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.471924] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.398865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.154572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.717590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.530640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.544800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.890320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.866699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.067261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.066345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.098877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.120239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.219177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.009460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.187195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.839233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.323669] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.644348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.046814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.009338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.104553] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.362366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.445679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.717529] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.571167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.479187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.778992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.834167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.746704] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.288086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.662415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.069824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.234985] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.773865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.489746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.257935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.077576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.754456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.201233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.369324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.807678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.923279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.073608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.395996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.459473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.781738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.490234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.235352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.421021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.628174] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.214600] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.842285] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.024048] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.480835] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.339111] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.044312] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.767334] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.060059] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.310303] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.522217] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.812866] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.926147] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.681396] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.198608] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.468140] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.581055] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.129639] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.036987] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.750366] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.162476] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.109253] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.669678] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.884399] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.195923] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.235352] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.382690] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.937012] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.864624] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.359985] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.539551] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.231689] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.616089] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.591797] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.176147] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.404541] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.327271] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.587402] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.601807] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.779175] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.801758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.562378] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.184204] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.198242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.981934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.547974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.902100] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.402100] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.278564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.468140] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.704712] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.513306] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.076904] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.757935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.211182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.227173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.261353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.166504] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.358765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.913330] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.284912] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.581787] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.288940] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.898438] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.565918] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.050293] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.500610] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.747925] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.193726] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.347168] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.440063] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.579956] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.190308] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.186768] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.354858] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.945801] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.349243] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.049622] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.428589] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.954590] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.083496] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.306580] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.753540] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.327454] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.317200] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.819153] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.288452] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.662231] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.758423] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.776184] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.922180] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.419312] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.421204] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.096313] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.096497] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.208801] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.733887] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.039185] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.672363] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.812073] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.688232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.246399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.690796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.562897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.189056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.509735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.958832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.932495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.612854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.672974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.147034] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.548584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.294067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.179352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.721649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.658524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.310455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.389099] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.238297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.207275] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.660080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.415909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.573181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.437653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.253769] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.568558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.029846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.406891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.817352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.244461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.767899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.381836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.466751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.765594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.286774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.944214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.631897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.448364] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.561279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.162033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.088348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.737122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.718628] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.482117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.852112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.349030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.600494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.687836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.028473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.320801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.062561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.689545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.653015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.387390] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.488464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.772369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.540802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.248108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.268982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.371765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.141479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.623047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.230896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.654968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.043884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.345520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.037781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.990967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.132141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.709167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.133057] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.623596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.293701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.601440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.494934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.928101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.373169] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.541870] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.250549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.331848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.021179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.951660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.547363] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.105957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.087646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.124207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.575684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.619690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.100525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.892883] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.462708] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.536926] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.165222] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.072144] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.726196] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.448730] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.509277] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.087646] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.655640] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.473145] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.854980] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.754028] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.657959] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.389282] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.907471] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.043091] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.874878] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.432739] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.482788] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.461792] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.875366] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.620605] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.561157] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.171875] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.279907] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.973877] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.171997] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.934692] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.270264] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.136963] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.353882] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.342163] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.746094] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.710449] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.822144] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.467529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.626099] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.103149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.048706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.191895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.811646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.017090] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.647461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.145264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.283447] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.453857] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.750732] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.043945] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.236938] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.223694] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.309387] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.142456] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.065796] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.881165] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.276794] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.600220] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.131226] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.175598] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.240906] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.671082] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.797058] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.462280] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.759033] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.656372] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.041870] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.102905] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.805420] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.175110] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.108215] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.416870] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.361694] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.224365] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.096558] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.277649] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.852661] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.187134] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.383484] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.047424] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.239319] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.746887] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.006348] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.517578] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.073547] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.899841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.026855] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.708923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.292145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.611359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.344360] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.776154] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.094513] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.774078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.550629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.996124] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.963684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.863007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.156586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.277893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.736908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.118591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.018585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.527374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.941223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.958237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.872177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.152161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.375015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.779556] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.168961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.675079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.420792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.055099] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.008148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.246368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.182297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.815094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.055862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.849594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.422028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.585129] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.216431] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.985626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.000671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.549103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.011566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.294220] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.798645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.762604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.895081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.048615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.098358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.877136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.843384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.447784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.679871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.501434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.085815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.772736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.162079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.858337] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.305054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.878418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.258911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.815002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.702637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.484436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.320496] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.900208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.197388] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.432190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.691589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.331787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.773926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.661865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.058777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.269470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.085144] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.445007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.581848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.219543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.407593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.274170] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.541748] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.562073] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.648621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.819763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.543030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.770020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.849609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.717896] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.633972] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.635864] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.708740] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.959290] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.295044] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.649597] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.915039] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.714478] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.502319] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.526550] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.401489] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.521912] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.510498] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.773193] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.228394] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.484375] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.940918] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.396973] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.296387] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.680176] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.134766] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.342896] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.177246] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.288696] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.420166] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.147095] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.657349] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.056274] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.267334] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.979370] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.540894] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.769653] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.612305] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.184204] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.320435] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.900146] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.334351] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.091064] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.399536] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.310669] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.764648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.840942] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.559326] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.867188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.877319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.211426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.640503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.201416] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.178711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.050171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.545654] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.409668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.025513] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.513428] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.616333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.765015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.845581] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.237793] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.467407] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.526001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.323608] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.692749] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.188843] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.375610] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.852417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.831055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.190369] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.320129] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.762024] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.008789] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.889954] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.823425] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.231873] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.598267] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.241882] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.888794] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.979370] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.211975] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.509033] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.228149] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.654297] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.519775] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.701294] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.719055] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.789246] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.000488] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.380127] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.140686] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.260254] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.381714] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.421204] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.488647] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.103333] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.884155] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.175049] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.309998] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.903320] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.579590] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.805115] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.819031] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.824402] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.947144] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.006622] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.365021] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.302277] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.048767] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.605713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.771698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.399872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.084106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.365692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.181213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.152161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.677185] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.872375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.606812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.609634] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.178619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.834488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.916550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.647308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.983032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.868546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.019348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.365784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.819969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.481720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.169426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.174698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.473228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.921684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.609238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.533615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.640976] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.044060] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.817810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.802681] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.846596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.093033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.483940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.608238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.969719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.094559] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.627792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.592743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.394379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.585205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.339050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.651184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.971146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.329056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.121109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.653107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.597336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.475037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.195709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.763794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.425568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.767670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.126526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.432983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.503937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.664429] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.426239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.769745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.597168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.253021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.845703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.731476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.432770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.574066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.947357] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.791779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.884338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.889526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.964050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.331299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.911011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.367615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.327759] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.217773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.049377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.993835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.593994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.801819] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.061646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.013794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.415222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.243164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.507263] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.369080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.047058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.401794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.283875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.598816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.750488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.699707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.340576] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.722839] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.024475] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.846985] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.515320] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.843567] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.776978] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.119629] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.765137] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.132507] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.409729] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.689758] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.475220] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.823364] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.971191] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.854004] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.926208] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.771606] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.046814] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.043579] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.529724] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.720459] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.482117] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.324341] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.999146] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.473572] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.593506] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.664246] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.241455] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.618896] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.560181] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.449341] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.948608] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.090820] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.915649] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.351929] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.449829] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.386475] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.841553] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.972656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.769165] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.200684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.306763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.046753] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.412842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.577881] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.324463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.850464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.784729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.655579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.876465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.195190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.159241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.302185] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.434509] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.193237] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.110840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.528809] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.409607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.671875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.182983] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.352661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.681885] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.992554] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.691284] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.928040] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.049500] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.969727] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.353882] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.347107] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.786133] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.234131] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.701904] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.177429] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.896057] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.831665] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.479980] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.191895] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.417542] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.400818] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.413208] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.083313] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.578674] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.654053] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.160278] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.710388] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.669861] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.434265] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.468933] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.853760] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.432190] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.351135] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.146942] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.230804] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.084229] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.655029] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.575745] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.805817] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.599823] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.871857] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.478088] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.992157] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.974365] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.379761] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.056854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.395645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.695755] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.369324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.391617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.880859] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.382881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403687] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410797] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430260] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432741] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434805] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436646] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443073] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444580] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446039] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447380] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448681] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451948] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452393] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452545] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451897] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451380] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449263] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446194] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444704] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431723] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427877] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423904] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419762] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415245] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406816] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402824] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396435] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398169] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405098] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411165] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413132] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415247] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417786] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425133] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430445] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435310] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449928] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455069] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462297] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463526] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460777] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463623] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471308] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474232] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472717] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461699] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455814] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454428] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459003] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464451] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465626] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467186] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468269] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469179] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470022] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470736] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470690] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470760] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471243] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471897] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472828] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475180] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479097] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480024] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480753] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481651] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482723] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483315] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483311] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482882] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482437] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481962] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.499451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.504662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.510899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.526728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.535555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.544287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.552141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.559299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.566244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.574604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.582897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.591570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.599970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.608614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.618176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.629656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.643715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.664536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.693840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.728155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.772425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.829094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.895254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.974815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.088125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.205975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.349352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.517191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.720501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.939774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.205786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.499596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.826952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.158155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.548353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.963970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.447803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.984921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.566074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.190302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.855507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.609747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.408569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.212595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.114731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.190048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.351742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.548244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.759895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.192955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.654644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.988461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.445766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.059406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.740616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.583324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.422009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.445602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.538574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.726704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.007023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.237438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.631416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.268051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.705547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.255219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.914124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.565010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.303741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.071815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.934296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.923203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.943840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.932785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.974930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.235825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.571922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.973564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.014359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.186722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.815201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.181999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.794907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.490845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.322098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.948380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.392944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.678619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.452530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.112015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.014633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.010361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.025681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.934525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.751984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.311066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.357376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.740646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.805298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.203903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.919708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.331757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.180847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.451370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.125000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.460510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.403198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.419907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.872223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.368317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.194550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.178864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.186539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.469818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.331818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.813766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.487305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.174377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.166840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.064941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.832611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.040161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.202515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.428589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.670502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.779114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.328217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.873535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.968079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.888031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.183594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.466309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.351532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.043152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.935089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.775452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.578369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.238495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.632233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.123779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.448975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.684845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.681732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.572968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.581268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.411926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.620575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.329315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.181335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.967987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.728333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.386383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.939148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.317413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.754120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.089508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.372162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.600739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.826477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.844666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.861298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.872711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.769073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.607330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.446320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.199249] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.917267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.563568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.215393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.806976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.319946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.864716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.332153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.770050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.173248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.909363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.139740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.344269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.589172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.821472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.073975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.346069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.653839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.938416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.260956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.605713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.972351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.355347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.770721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.284760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.839142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.419067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.017761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.598785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.269623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.882080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.580963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.238556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.156006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.064728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.956726] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.847015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.779907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.815338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.842285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.961395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.855591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.220062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.615387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.993042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.452118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.004639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.535309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.021545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.675385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.293182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.023254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.978455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.949677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.058716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.461945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.937653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.485748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.964020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.432800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.109131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.777283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.539917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.200348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.883942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.581879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.444946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.236053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.729065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.915588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.188110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.197388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.451111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.170288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.654755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.327698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.655151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.556976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.667633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.154938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.505768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.042816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.473633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.189392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.651794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.248657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.852417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.571472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.230225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.833252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.462830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.044434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.602295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.570129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.296753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.791687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.555359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.366089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.314819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.995667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.862366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.172363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.644226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.305603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.029785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.827759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.550842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.170959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.759460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.422791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.746948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.145691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.601318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.118103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.252563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.349976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.273987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.502258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.646667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.958557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.202271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.411987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.249756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.000183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.039063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.868652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.591797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.212952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.626709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.271973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.755737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.112732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.319153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.648865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.762573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.768005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.869568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.906128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.127625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.955750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.793335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.485840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.171387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.801331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.429932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.162964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.931091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.571289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.478394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.414246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.646973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.070068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.242615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.437195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.509338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.499451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.493591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.442749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.289978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.156677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.000000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.795227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.623718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.445190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.210815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.972107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.726135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.544373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.288391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.007629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.699524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.392456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.060608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.764404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.456421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.149048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.844727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.554749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.210938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.842712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.462952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.209351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.962769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.759888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.540466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.307617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.087891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.809937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.525146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.367554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.147583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.014709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.744995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.450928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.317871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.198486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.048462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.899719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.799194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.730286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.683838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.651245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.684509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.612915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.649536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.854980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.963074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.083557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.321045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.909851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.586182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.056824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.670776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.219666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.718018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.435242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.176453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.814270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.542358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.260681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.014893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.763794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.641113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.513306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.469360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.615112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.785583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.969177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.342468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.726624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.091125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.479126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.993530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.600464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.233398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.848267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.571228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.403564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.558777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.709595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.899963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.212524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.438293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.723389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.508728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.766968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.408447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.738647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.533081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.349548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.913147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.293396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.456421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.570862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.958008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.927368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.794373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.405334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.805115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.195740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.845886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.468018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.838440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.553955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.946411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.483093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.039429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.318909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.511719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.604431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.982544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.001526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.020508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.156433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.088989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.437073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.304504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.125122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.346008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.471558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.420715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.222595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.922546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.707153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.323486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.113647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.894714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.626465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.029785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.271301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.533875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.739868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.816589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.072571] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.405945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.661560] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.984497] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.173218] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.502014] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.698181] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.929749] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.000305] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.233215] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.268677] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.147339] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.052551] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.043457] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.911865] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.122803] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.959351] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.668091] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.314941] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.894409] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.406250] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.794678] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.111572] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.349976] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.539917] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.652710] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.673584] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.598999] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.435913] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.153564] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.745972] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.197144] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.585449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.666260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.763916] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.732422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.625610] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.260620] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.430298] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.735352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.067505] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.380249] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.441162] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.285400] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.138428] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.746033] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.092285] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.395264] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.616882] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.675232] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.634155] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.459534] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.021179] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.601440] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.315979] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.963806] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.631897] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.910156] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.389526] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.352844] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.477966] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.575562] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.278137] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.196960] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.181763] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.211853] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.973938] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.718262] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.542236] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.048950] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.797180] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.726868] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.582092] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.858704] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.553467] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.129883] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.849854] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.672485] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.979675] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.568054] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.420532] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.654907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.293762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.285278] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.645935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.449829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.657227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.156860] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.016846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.174927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.864502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.766113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.007507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.599854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.601990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.036743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.960632] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.057678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.943909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.008362] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.749634] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.442383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.795898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.648743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.184814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.749451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.285706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.122375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.878784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.222412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.991699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.946167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.062744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.126831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.682861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.201782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.992310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.738525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.445068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.428955] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.836426] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.416992] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.711548] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.136353] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.029663] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.671875] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.267944] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.936035] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.894043] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.576782] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.166504] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.807495] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.881592] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.644897] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.759888] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.694702] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.478760] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.910522] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.726807] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.749390] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.829224] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.530640] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.303589] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.641602] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.346802] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.961670] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.139526] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.134766] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.401123] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.289063] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.661987] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.314819] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.477783] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.403564] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.138794] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.964233] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.338867] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.316162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.225098] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.620728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.825195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.821533] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.605835] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.039673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.328857] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.514526] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.625244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.319092] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.710449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.837280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.187378] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.455322] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.446655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.101196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.517334] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.742065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.575684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.197876] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.424927] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.473633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.242310] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.603760] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.137817] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.835083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.606323] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.551880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.495605] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.642212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.045532] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.661865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.548096] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.582764] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.802246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.771606] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.612671] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.560913] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.993408] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.169556] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.825928] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.555054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.917358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.090088] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.179077] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.078613] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.400635] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.818848] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.724976] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.223389] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.740479] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.949219] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.078491] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.810425] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.466919] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.983154] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.439575] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.455688] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.007324] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.817627] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.659424] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.766968] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.169434] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.068848] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.626831] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.994751] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.901001] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.940369] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.644287] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.998901] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.579468] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.531189] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.609985] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.356018] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.555481] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.994446] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.796692] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.681824] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.187439] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.617065] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.409485] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.743652] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.504089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.160645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.919739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.746948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.292542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.305847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.228577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.836304] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.200256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.133179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.838318] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.251587] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.355164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.029236] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.583008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.039001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.392883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.043762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.160095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.367676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.612793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.587646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.224609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.895813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.117676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.659180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.366455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.671082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.773743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.369568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.435364] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.656555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.853271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.034668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.216125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.320801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.200806] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.155518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.512207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.403198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.092651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.381226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.502441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.204590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.011597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.559204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.142700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.869995] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.063599] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.609009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.454468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.331421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.965698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.851929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.274292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.213623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.524902] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.177734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.974854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.297119] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.625610] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.379639] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.805908] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.369019] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.944824] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.379517] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.673096] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.167725] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.195801] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.971924] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.794800] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.463989] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.455078] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.749268] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.260132] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.463745] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.221191] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.841187] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.747925] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.211914] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1492.219116] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.824219] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.520874] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.252319] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.958740] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1525.066772] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.054810] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.584106] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.606323] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.915771] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.891113] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.727051] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.327637] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.005859] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.336182] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1575.463257] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1579.671997] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.465942] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1587.089600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.731934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.287598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.464233] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.683960] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.519287] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.014771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.377319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.799316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.225708] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.155396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.908813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1618.608032] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1620.003662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1621.254150] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.266357] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.221069] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.885498] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1624.239014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1624.263916] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.958984] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.335205] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.349243] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1621.003662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1619.274292] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.282349] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.764160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.047852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.665771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.229004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.746826] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.873291] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.777466] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.904419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.743042] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.983154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1573.682251] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.504639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.912476] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.544922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.724976] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.273438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1538.121338] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.401123] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.816895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.615723] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.533325] [T/O: true ][Cruise: false ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.835693] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.244019] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.756714] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.341187] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.048828] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.593018] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.357178] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.933105] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.290771] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.025635] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.319214] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.908569] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.090820] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.322021] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.980469] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.829590] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.786865] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.998901] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.924927] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.629272] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.330688] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.041870] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.275452] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.016174] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.331238] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.509338] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.480225] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.578613] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.391724] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.652954] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.688049] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.402466] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.144714] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.213135] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.599854] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.022888] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.439514] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.382935] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.628540] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.854248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.354858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.931335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.067444] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.305298] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.621582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.167053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.460327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.351624] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.322906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.119537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.161774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.272614] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.051483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.878601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.071625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.388367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.202209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.959625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.702209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.512848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.162140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.922394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.875305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.967590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.140442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.104553] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.364136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.487732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.617859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.017517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.757996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.140808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.589050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.034546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.942932] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.855347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.327942] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.572815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.449585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.878479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.233215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.977539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.804565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.481201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.140198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.171265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.783386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.882935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.260559] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.737671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.191772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.054016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.435486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.592468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.598206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.087585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.808838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.431030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.930420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.974365] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.269409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.387695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.597534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.684937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.309692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.017822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.646973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.453125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.811279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.120972] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.831177] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.764893] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.554443] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.440918] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.566895] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.913818] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.483398] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.034912] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.782227] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.282715] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.447144] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.714355] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.389282] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.006836] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.560669] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.324219] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.532227] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.835449] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.238037] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.644897] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.043579] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.199463] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.737793] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.554321] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.433716] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.984619] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.931152] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.184692] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.420898] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.032959] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.145264] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.107910] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.589844] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.520996] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.061523] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.262695] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.092896] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.459473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.510132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.941040] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.149780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.824951] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.110596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.573608] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.083008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.963013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.694702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.335449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.145142] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.320557] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.783325] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.495972] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.174805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.200806] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.517212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.579346] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.178833] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.428345] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.307861] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.933838] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.007813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.354492] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.394287] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.955688] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.523438] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.907593] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.564941] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.294800] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.481934] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.136597] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.662720] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.441284] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.272583] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.237549] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.875854] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.328369] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.166016] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.389160] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.746460] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.920044] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.003784] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.961548] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.591187] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.241455] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.816223] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.018250] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.310791] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.792297] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.530029] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.666687] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.941040] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.816040] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.423922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430929] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434847] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436289] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437513] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439482] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445223] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446159] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450312] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453487] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447308] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443928] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441231] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434244] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425852] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420263] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415138] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397724] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401739] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404049] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408360] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413803] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421352] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425604] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430555] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440363] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445444] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462992] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462523] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461847] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465343] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468081] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478941] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474644] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467037] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461132] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460932] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461285] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461805] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464602] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468422] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471531] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472902] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474024] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475702] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476513] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477089] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477514] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477900] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478436] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478939] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479305] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479448] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479345] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479027] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478546] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.499779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.504887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.514746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.520067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.526804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.534378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.542822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.552443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.563908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.574860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.586704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.600639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.615776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.633408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.652977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.675505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.702322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.739510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.782841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.831711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.890293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.963276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.043709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.144857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.256119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.393522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.538015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.708918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.141695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.384634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.637056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.925541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.262083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.631586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.046135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.502184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.991262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.519825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.109056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.727291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.393742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.142117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.992060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.932615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.819269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.726286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.720896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.864561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.070526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.379158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.803589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.193073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.758873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.338428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.998333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.954216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.930897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.986755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.151745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.180195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.308750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.591129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.025478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.630405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.199558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.001389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.691216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.532585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.487999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.417351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.549965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.763908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.099472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.260155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.609436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.905754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.362305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.814835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.901375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.518272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.725777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.922783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.408676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.274551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.148727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.699203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.549515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.532761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.694794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.803528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.951187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.534317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.428635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.964676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.829636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.147858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.789902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.970734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.105835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.175110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.352371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.462265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.427063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.499481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.678925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.291962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.500870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.388550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.414032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.973465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.893036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.888031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.681213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.476044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.462067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.026337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.691193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.596161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.224243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.381439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.129883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.683228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.086761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.468536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.855530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.113739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.547028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.632263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.650238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.733948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.913330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.555450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.314941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.152954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.986816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.753967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.375031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.011688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.811035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.580048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.998322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.491302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.029633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.423981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.774353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.923950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.178162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.300446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.453033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.753845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.804321] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.681305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.418945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.134705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.073059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.616364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.167389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.621704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.948669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.172241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.385956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.493591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.543335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.572601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.512604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.458008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.273773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.091492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.777313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.411682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.033081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.566864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.054443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.496521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.878632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.204285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.514923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.773193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.985260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.179596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.348755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.488617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.596283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.680878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.742889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.792816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.827759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.845428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.851044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.849915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.842529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.831055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.821350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.814636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.813904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.824799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.854034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.895081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.960236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.048279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.168396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.306061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.487457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.699585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.941132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.209167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.526672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.882690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.268158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.751984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.248718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.735870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.290955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.897827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.557098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.231750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.029449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.940857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.804932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.704041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.627502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.633270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.589142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.699768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.775665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.959686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.248474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.520874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.926453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.379852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.865234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.397888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.995758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.658417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.326508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.038757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.786072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.579956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.518738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.403595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.458557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.467529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.507111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.532501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.779816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.009735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.337402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.808960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.287567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.222015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.001953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.874023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.703949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.290924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.153625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.257263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.044678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.726166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.693146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.774414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.044159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.154236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.236908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.699829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.718994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.895355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.943970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.047607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.201752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.187683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.359436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.767761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.026123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.755188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.311096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.790283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.369141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.858337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.130859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.435974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.771790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.144897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.590881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.170654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.994141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.557617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.213379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.758911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.514343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.054504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.512939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.017578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.767822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.488525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.294556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.798157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.405579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.983582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.483887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.014282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.616455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.363831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.730957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.856812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.949646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.300598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.393433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.469360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.468445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.645691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.684326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.654480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.844543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.814758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.663391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.507019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.076233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.631592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.228516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.883728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.568359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.861694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.017761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.109863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.336060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.642639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.953552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.370789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.435974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.238342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.043030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.931763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.850403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.806763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.474365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.183960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.915100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.711853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.230286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.598572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.928528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.307007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.709717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.156494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.522339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.716675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.851196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.056519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.106873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.123169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.168152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.162048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.072998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.000549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.944153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.805298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.645386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.498291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.257629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.939514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.623657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.425964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.197632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.959595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.708374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.354492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.984253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.683472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.408447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.065857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.646606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.278198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.956543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.559631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.158936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.768311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.409607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.038757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.642273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.310974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.900146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.545044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.176636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.810730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.437805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.061829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.700073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.346008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.012939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.736328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.467896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.216919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.018311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.753296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.597656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.444519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.215515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.023621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.864075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.800903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.809692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.770813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.817078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.784790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.779236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.041382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.257874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.514160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.797485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.188049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.426697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.724854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.139771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.636963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.089844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.841370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.487427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.351746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.230347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.176941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.208923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.242676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.372986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.463196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.549316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.765686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.241943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.652893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.140686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.723206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.134033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.626099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.051941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.764221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.723938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.648499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.495361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.249573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.455200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.553589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.611938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.787842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.137329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.433411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.469482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.741333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.097046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.367981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.605652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.861145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.763916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.764893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.141663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.362854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.999878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.386841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.594238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.142212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.403503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.771851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.189270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.539185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.785522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.782837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.130493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.223755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.506592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.339355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.494324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.663574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.960876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.275940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.278931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.102783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.270325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.133240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.526306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.593567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.416870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.257385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.172485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.946716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.728333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.312439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.307861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.050110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.666565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.872925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.498413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.234680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.892639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.597778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.478760] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.208374] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.974487] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.492493] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.354980] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.101074] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.338623] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.582581] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.606812] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.657593] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.861328] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.032593] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.008545] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.954224] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.844238] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.591797] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.309570] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.174805] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.937622] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.560791] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.262329] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.747437] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.207764] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.646973] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.816772] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.022339] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.036743] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.047241] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.914917] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.646362] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.257202] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.737427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.086060] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.275635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.300415] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.169189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.443604] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.861694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.055054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.117065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.985596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.787109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.220337] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.641113] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.942627] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.817383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.566772] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.157715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.644043] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.747559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.764771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.491699] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.138245] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.607300] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.735901] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.916687] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.911804] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.825439] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.931091] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.644836] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.258484] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.853638] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.017334] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.724854] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.681030] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.829407] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.014893] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.887939] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.880615] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.108582] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.346375] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.960510] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.625366] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.228149] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.009644] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.761230] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.752258] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.857056] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.645142] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.486084] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.689941] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.874512] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.173523] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.911926] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.887634] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.245850] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.955444] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.893616] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.137512] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.870972] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.084839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.650818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.657104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.058716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.933472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.107910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.663940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.603760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.948059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.902466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.076416] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.242126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.698853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.811523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.633118] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.863770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.123535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.524414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.057739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.879700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.234680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.347595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.245667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.638611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.507385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.984009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.307617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.169556] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.627930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.831604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.926575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.980469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.253052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.584473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.518311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.021606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.297241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.000000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.358521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.603271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.444458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.718018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.808350] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.623291] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.017334] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.889771] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.941162] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.126953] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.051636] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.788818] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.944824] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.720459] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.929321] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.833740] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.058960] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.757568] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.559937] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.835815] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.161011] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.015503] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.703369] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.499268] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.739502] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.699951] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.358398] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.676392] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.798340] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.135864] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.737183] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.777222] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.619263] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.334473] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.767944] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.174194] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.270630] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.578125] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.597900] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.008301] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.049072] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.362061] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.007080] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.650269] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.222412] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.527588] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.211670] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.200073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.928955] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.161621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.597534] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.310791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.242920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.221680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.851929] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.363770] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.740234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.726563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.331909] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.696899] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.827026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.711304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.329834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.695190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.744995] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.540405] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.102905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.270630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.266968] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.131348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.667969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.110107] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.934570] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.645752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.701538] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.771362] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.115601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.912476] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.337402] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.391724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.316772] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.517822] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.374390] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.717285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.876831] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.898682] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.127808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.287598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.506226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.290649] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.492920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.167480] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.065063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.568237] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.048584] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.870972] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.472656] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.617920] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.647095] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.176880] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.567993] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.523804] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.939209] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.384521] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.909546] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.277344] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.402344] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.021484] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.531982] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.929565] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.312012] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.584229] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.016724] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.723999] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.302124] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.068970] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.593140] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.276978] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.694458] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.198669] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.401550] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.690491] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.689392] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.545959] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.606995] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.232910] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.057556] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.839844] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.190674] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.019775] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.812805] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.611755] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.115295] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.630676] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.966431] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.411682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.359436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.373291] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.436523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.882141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.192810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.291992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.371094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.242920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.927551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.484192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.789429] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.608948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.293030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.288757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.053406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.780640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.702026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.469238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.218994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.278625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.456909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.148315] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.553528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.129395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.755310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.349731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.548889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.042969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.632324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.796387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.919861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.886169] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.381348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.280457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.651306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.306152] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.038452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.631592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.924805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.050537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.354126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.409302] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.522339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.096436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.434082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.003418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.885254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.703857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.535889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.928955] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.799316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.307007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.393799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.672363] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.078247] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.258545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.939941] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.763184] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.070313] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.398315] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.219360] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.123535] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.506592] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.645386] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.992310] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.378418] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.920288] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.353394] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.259155] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.063721] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.770752] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.105225] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.045410] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.307129] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.170776] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.244263] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.065186] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.398560] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1475.409546] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1482.380127] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.684570] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.437134] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.769287] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.636597] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.560059] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.808350] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.712769] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.362427] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.972290] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.071411] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.859253] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.105560] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.070496] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.672638] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.467743] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.074844] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.098343] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.329910] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.507996] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.973526] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.017044] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.099014] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.905548] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.843552] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.364578] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.218292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.498016] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.537613] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.305344] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.675644] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.674301] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.788940] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.713608] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.477066] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.616104] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.077286] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.935165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.527206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.480560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.147034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.043793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.279251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.186584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.757645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.454041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.197464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.828918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.016525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.037537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.834381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.555908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.004852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.971741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.115112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.839447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.068298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.882965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.085510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.196350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.620056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.806580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.875763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.731018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.883575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.246552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.707642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.682831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.298584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.151611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.679260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.805237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.042053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.026001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.733704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.820190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.034485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.576965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.942688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.319031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.432861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.878845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.245972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.857544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.787354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.828491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.198242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.475830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.781128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.803711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.381409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.677429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.389648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.073669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.445740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.682251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.346069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.780396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.653748] [T/O: true ][Cruise: false ] +[Elevator: -0.144742] [Roll: -0.231314] [Yaw: -0.046263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.659668] [T/O: true ][Cruise: false ] +[Elevator: -0.144742] [Roll: -0.231314] [Yaw: -0.046263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.950684] [T/O: true ][Cruise: false ] +[Elevator: -0.179474] [Roll: -0.125442] [Yaw: -0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.933044] [T/O: true ][Cruise: false ] +[Elevator: -0.341182] [Roll: 0.628871] [Yaw: 0.125774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.472229] [T/O: true ][Cruise: false ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.779297] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.137573] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.657227] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.423706] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.141479] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.803589] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.569946] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.773315] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.670654] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.775024] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.503174] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.807373] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.170166] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.886108] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.139771] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.340210] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.861572] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.207886] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.934326] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.169922] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.655762] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.383301] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.749512] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.773193] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.816162] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.801758] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.520996] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.785156] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.661621] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.242676] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.480225] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.316528] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.666260] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.650391] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.352783] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.706299] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.471436] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.125488] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.850098] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.180664] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.903320] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.651738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.230469] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.641738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.742188] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.631738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.921997] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.621738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.661743] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.611738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.247437] [T/O: false ][Cruise: true ] +[Elevator: -0.341182] [Roll: 0.601738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.183472] [T/O: false ][Cruise: true ] +[Elevator: -0.331182] [Roll: 0.591738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.819702] [T/O: false ][Cruise: true ] +[Elevator: -0.321182] [Roll: 0.581738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.685425] [T/O: false ][Cruise: true ] +[Elevator: -0.311182] [Roll: 0.571738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.923462] [T/O: false ][Cruise: true ] +[Elevator: -0.301182] [Roll: 0.561738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.998535] [T/O: false ][Cruise: true ] +[Elevator: -0.291182] [Roll: 0.551738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.136597] [T/O: false ][Cruise: true ] +[Elevator: -0.281182] [Roll: 0.541738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.290894] [T/O: false ][Cruise: true ] +[Elevator: -0.271182] [Roll: 0.531738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.452515] [T/O: false ][Cruise: true ] +[Elevator: -0.261182] [Roll: 0.521738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.156982] [T/O: false ][Cruise: true ] +[Elevator: -0.251182] [Roll: 0.511738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.627686] [T/O: false ][Cruise: true ] +[Elevator: -0.241182] [Roll: 0.501738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.597900] [T/O: false ][Cruise: true ] +[Elevator: -0.231182] [Roll: 0.491738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.028564] [T/O: false ][Cruise: true ] +[Elevator: -0.221182] [Roll: 0.481738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.499390] [T/O: false ][Cruise: true ] +[Elevator: -0.211182] [Roll: 0.471738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.201182] [Roll: 0.461738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.416321] [T/O: false ][Cruise: true ] +[Elevator: -0.191182] [Roll: 0.451738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.615051] [T/O: false ][Cruise: true ] +[Elevator: -0.181182] [Roll: 0.441738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.440125] [T/O: false ][Cruise: true ] +[Elevator: -0.171182] [Roll: 0.431738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.076172] [T/O: false ][Cruise: true ] +[Elevator: -0.161182] [Roll: 0.421738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.786743] [T/O: false ][Cruise: true ] +[Elevator: -0.151182] [Roll: 0.411738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.404236] [T/O: false ][Cruise: true ] +[Elevator: -0.141182] [Roll: 0.401738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.978027] [T/O: false ][Cruise: true ] +[Elevator: -0.131182] [Roll: 0.391738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.103699] [T/O: false ][Cruise: true ] +[Elevator: -0.121182] [Roll: 0.381738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.467529] [T/O: false ][Cruise: true ] +[Elevator: -0.111182] [Roll: 0.371738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.089905] [T/O: false ][Cruise: true ] +[Elevator: -0.101182] [Roll: 0.361738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.361938] [T/O: false ][Cruise: true ] +[Elevator: -0.091182] [Roll: 0.351738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.112854] [T/O: false ][Cruise: true ] +[Elevator: -0.081182] [Roll: 0.341738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.632690] [T/O: false ][Cruise: true ] +[Elevator: -0.071182] [Roll: 0.331738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.751099] [T/O: false ][Cruise: true ] +[Elevator: -0.061182] [Roll: 0.321738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.650146] [T/O: false ][Cruise: true ] +[Elevator: -0.051182] [Roll: 0.311738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.319763] [T/O: false ][Cruise: true ] +[Elevator: -0.041182] [Roll: 0.301738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.217773] [T/O: false ][Cruise: true ] +[Elevator: -0.031182] [Roll: 0.291738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.192322] [T/O: false ][Cruise: true ] +[Elevator: -0.021182] [Roll: 0.281738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.809937] [T/O: false ][Cruise: true ] +[Elevator: -0.011182] [Roll: 0.271738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.151611] [T/O: false ][Cruise: true ] +[Elevator: -0.001182] [Roll: 0.261738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.247681] [T/O: false ][Cruise: true ] +[Elevator: 0.008818] [Roll: 0.251738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.031921] [T/O: false ][Cruise: true ] +[Elevator: 0.018818] [Roll: 0.241738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.613708] [T/O: false ][Cruise: true ] +[Elevator: 0.028818] [Roll: 0.231738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.770752] [T/O: false ][Cruise: true ] +[Elevator: 0.038818] [Roll: 0.221738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.999451] [T/O: false ][Cruise: true ] +[Elevator: 0.048818] [Roll: 0.211738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.719788] [T/O: false ][Cruise: true ] +[Elevator: 0.058818] [Roll: 0.201738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.668701] [T/O: false ][Cruise: true ] +[Elevator: 0.068818] [Roll: 0.191738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.078818] [Roll: 0.181738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.310364] [T/O: false ][Cruise: true ] +[Elevator: 0.088818] [Roll: 0.171738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.314087] [T/O: false ][Cruise: true ] +[Elevator: 0.098818] [Roll: 0.161738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.569214] [T/O: false ][Cruise: true ] +[Elevator: 0.108818] [Roll: 0.151738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.382751] [T/O: false ][Cruise: true ] +[Elevator: 0.118818] [Roll: 0.141738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.805359] [T/O: false ][Cruise: true ] +[Elevator: 0.128818] [Roll: 0.131738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.359131] [T/O: false ][Cruise: true ] +[Elevator: 0.138818] [Roll: 0.121738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.742371] [T/O: false ][Cruise: true ] +[Elevator: 0.148818] [Roll: 0.111738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.972778] [T/O: false ][Cruise: true ] +[Elevator: 0.158818] [Roll: 0.101738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.457031] [T/O: false ][Cruise: true ] +[Elevator: 0.168818] [Roll: 0.091738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.414978] [T/O: false ][Cruise: true ] +[Elevator: 0.178818] [Roll: 0.081738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.508636] [T/O: false ][Cruise: true ] +[Elevator: 0.188818] [Roll: 0.071738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.755249] [T/O: false ][Cruise: true ] +[Elevator: 0.198818] [Roll: 0.061738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.696930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.051738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.077484] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.041738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.068939] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.031738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.321808] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.021738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.525024] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.011738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.867462] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.001738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.829865] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.008262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.801392] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.018262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.620300] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.028262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.204346] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.038262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.076508] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.048262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.648819] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.058262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.058929] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.682999] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.145142] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.877945] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.889206] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.293274] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.493896] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.058262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.048262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.038262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.028262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.038262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.048262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.058262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.058262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.048262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.038262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.028262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.018262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.008262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: 0.001738] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.008262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.018262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.028262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.038262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.048262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.058262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.068262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.078262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.088262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.098262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.108262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.118262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.128262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.138262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.148262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.208818] [Roll: -0.158262] [Yaw: 0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.001930] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2047.495728] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2043.375244] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2039.664795] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2035.791626] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2031.918945] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2028.237915] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2024.369019] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2020.650879] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2016.955566] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2013.018555] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2008.962158] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2005.105103] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2001.260620] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1997.221313] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1993.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1988.715088] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.260010] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.774536] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1975.384155] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1971.075439] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1966.557983] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1962.376831] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1958.038452] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1953.756714] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1948.843628] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1944.251709] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1940.167969] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1936.095459] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1931.876587] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1927.511841] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1923.733765] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1919.965210] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1916.152588] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1912.078369] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1907.985229] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1904.248901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1900.769287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1897.283325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1894.138550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1890.837769] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1887.743652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1884.665894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.734863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1878.120117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1875.679810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1873.566772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1871.574829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1869.562256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1867.934814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1866.526367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1865.314453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1864.256958] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1863.419678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.783325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.360229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.134521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.089111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.226563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.527954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1862.990845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1863.626587] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1864.467041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1865.405640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1866.561890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1867.787598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1869.045654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1870.720581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1872.606812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1874.381958] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1876.405640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1878.577515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1880.675537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1883.066650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1885.478516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1887.993896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1890.391968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1892.921509] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1895.612915] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1898.355957] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1901.171631] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1904.371948] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1907.363281] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1910.455688] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1913.536499] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1916.678955] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1919.917358] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1922.988525] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1926.418701] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1929.696655] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1932.783936] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1935.721924] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1938.662598] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1941.663574] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1944.691895] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1947.734619] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1950.481567] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1953.466675] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1956.345215] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1959.086548] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1961.284668] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1963.646240] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1966.081543] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1968.102173] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1970.008179] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1971.844238] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1973.597534] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1975.207886] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1976.820557] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1978.236206] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.530518] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1980.646118] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1981.724731] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1982.565674] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.219849] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.755127] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.149780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.309937] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.258179] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.044922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.662964] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.035522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1982.245850] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1981.121216] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.900757] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1978.571655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1976.959595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1974.807373] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1972.687866] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1970.482422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1968.075684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1965.243408] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1962.247681] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1959.228516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1956.182739] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1952.566895] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1948.959351] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1945.193115] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1941.545776] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1937.129517] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1933.228149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1928.949097] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1924.268311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1919.857544] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1914.921753] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1910.163086] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1904.428711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1897.324219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1890.766235] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1884.812378] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1879.398682] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1872.772339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1866.760864] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1859.873901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1852.863037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1846.924316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1840.431274] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1834.352295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1827.551147] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1819.147461] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1811.761475] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1804.543823] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1797.732422] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1790.559448] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1782.839111] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1775.762939] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1768.202515] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1760.256104] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1752.065430] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1744.021973] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1735.832031] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1727.732056] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1720.025879] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1711.598145] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1703.751099] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1695.355835] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1686.854004] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1678.104004] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1669.558350] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1660.718994] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1651.078491] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1641.031128] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1631.758057] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1622.266724] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1612.668579] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1602.912964] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1593.474243] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1582.785278] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1572.350098] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1562.320068] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1552.634277] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1543.194946] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1533.133789] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1523.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1514.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1505.770386] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1497.047363] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1488.502686] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1480.511719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1473.083618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1464.950928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1458.020264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1450.881592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1444.159058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1437.815063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1431.853760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1426.231689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1421.204712] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1416.480225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1412.037476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1408.528687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1405.112061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1402.381836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1400.044067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1398.066162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1396.328735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1395.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1394.950684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1395.032837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1395.502441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1396.606567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1398.296387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1400.218018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1402.450684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1404.971558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1407.956787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1411.068726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1414.830078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1419.601685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1424.260620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1428.820557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1433.550537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1438.444214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1444.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1452.181396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1458.362427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1465.196045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1472.145508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1480.108032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1487.400146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1494.152710] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1501.297607] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1510.053711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1517.618774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1525.279297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1531.941650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1539.323120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1547.012939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1554.153076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1560.487183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1566.934570] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1573.973755] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1581.036255] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1587.604248] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1594.437256] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1600.701172] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1607.370850] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1613.518921] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1619.393188] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1625.490356] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1631.527832] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1637.246216] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1643.176636] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1650.184204] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1656.042480] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1661.775024] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1667.459961] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1672.996826] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1678.551392] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1684.546631] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1690.267944] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1695.771362] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1700.723511] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1705.376221] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1710.176392] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1715.020142] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1719.462524] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1723.696777] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1727.619507] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1731.367065] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1734.867065] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1737.685303] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1740.585571] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1743.268677] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1745.717651] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1747.847656] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1749.562744] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1751.070190] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1752.391724] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1753.508301] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1754.391235] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.000244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.360962] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.527954] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.444580] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.097168] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1754.501343] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1753.665894] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1752.655396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1751.414185] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1749.882080] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1748.236816] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1746.584717] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1744.707642] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1742.651733] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1740.586304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1738.374023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1735.879028] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1733.278320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1730.423706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1727.470215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1724.254517] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1721.027588] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1717.471680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1713.934082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1710.168091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1706.466064] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1702.413818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1698.056274] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1693.636108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1688.966187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1683.831665] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1678.909424] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1673.881958] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1668.364990] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1662.691040] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1656.976440] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1651.009277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1645.277710] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1639.042236] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1632.465698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1626.028564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1619.297485] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1611.980835] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1605.251343] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1597.896729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1590.424805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1582.701416] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1575.114746] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1567.401245] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1558.608643] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1550.400146] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1542.454346] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1534.065063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1525.481934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1516.824585] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1507.966309] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1498.977051] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1489.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1480.564209] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1471.406616] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1461.572998] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1451.139160] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1441.568970] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1430.440552] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1419.706299] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1408.990723] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1398.763916] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1388.188477] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1377.401245] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1366.024780] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1355.412354] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1343.974487] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1332.729248] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1321.117920] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1308.714600] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1296.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1284.876099] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1272.474121] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1260.744995] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1248.107788] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1236.252808] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1224.343628] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1212.524902] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1200.177856] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1188.552612] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1176.887085] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1164.590698] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1152.587402] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1139.400635] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1126.468384] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1112.768311] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1100.539795] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1085.994873] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1071.330688] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1058.895630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1046.682129] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1033.565552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1022.196716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1011.414917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 999.205933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 988.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 977.963440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 968.339355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 958.985229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 950.236511] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 942.105957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 934.656616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 927.897583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 921.031921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 915.674255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 910.350525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 905.779724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 901.745544] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 898.137512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 895.534485] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 893.612610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 892.327698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 891.923828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 892.160461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 893.146240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 894.804199] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 896.854248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 899.395386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 902.693726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 906.807068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 910.866089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 916.211426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 922.589172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 928.716797] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 936.307312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 943.945435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 950.662720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 958.456299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 966.947021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 974.212097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 982.804504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 990.805115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 998.173157] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1006.357239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1013.483765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1021.242920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1029.073853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1036.748901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1044.635010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1053.579468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1061.824829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1069.501831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1077.664795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1085.378418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1093.402100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1100.919556] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1109.029175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1116.393555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1124.097900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1133.001953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1140.916504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1148.131470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1157.070679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1165.305176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1173.476440] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1181.175903] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1188.826172] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1196.366333] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1204.164307] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.336182] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1218.709229] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1225.982056] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1233.385986] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1240.963745] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1248.501953] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1255.466553] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1262.289551] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1269.230957] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1275.866089] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1281.997192] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1288.060547] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1294.101563] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1300.322388] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1305.737671] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1311.387817] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1316.528076] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1321.387573] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1326.732666] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1331.430176] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1335.983643] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1340.408813] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1344.530518] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1348.525879] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1352.686646] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1356.389282] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1360.331177] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1364.207153] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1367.943237] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1371.361816] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1374.636475] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1377.480591] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1379.908203] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1382.220581] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1383.992798] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1385.557861] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1386.477173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1386.954224] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1387.098999] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1386.848755] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1386.286133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1385.426758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1384.232056] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1382.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1380.549194] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1378.034912] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1375.357056] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1372.769409] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1369.920776] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1366.977661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1363.838501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1360.768921] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1357.625366] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1354.575439] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1350.674438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1346.920654] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1343.202026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1339.385742] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1335.219116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1330.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1325.924805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1321.381592] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1316.383423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1311.040771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1305.616089] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1300.358276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1294.729370] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1288.279419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1281.526978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1274.674072] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1266.721069] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1259.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1252.471680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1245.427246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1238.278564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1230.527222] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1223.049194] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1214.763306] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1204.289063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1193.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1185.042725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1175.605347] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1166.441772] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1157.467163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1148.327637] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1138.636475] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 917.114258] [T/O: true ][Cruise: false ] +[Elevator: -0.190000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.160583] [T/O: true ][Cruise: false ] +[Elevator: -0.180000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.711243] [T/O: true ][Cruise: false ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.293213] [T/O: true ][Cruise: false ] +[Elevator: -0.160000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.069214] [T/O: true ][Cruise: false ] +[Elevator: -0.150000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.290039] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.184143] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.673767] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.049683] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.748413] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.254456] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.319336] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: -0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.692017] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: -0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.865173] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.050000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.889099] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.040000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.137207] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.030000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.446167] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.627197] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.036621] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.359131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.234741] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.400818] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.034851] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.753418] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.325500] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.669434] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.681641] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.516327] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.597260] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.126343] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.464172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.601776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.753693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.235474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.813293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.240479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.431274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.546448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.486237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.823090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.308411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.320129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.036865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.049286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.887222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.013702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.107880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.764465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.344788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.865692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.629456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.377411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.367508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.453903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.511902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.423462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.139740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.659821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.014359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.821045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.421646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.541382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.713776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.931076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.033096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.907959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.399933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.072693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.752258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.360962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.935699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.214996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.123352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.640045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.376770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.873199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.245911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.281342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.215759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.910828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.412476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.081329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.569458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.030792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.313202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.651062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.386292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.149231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.280029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.225342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.575623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.561829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.347351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.163513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.656250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.614502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.708862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.600464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.384949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.859070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.040161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.628479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.520813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.925903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.363708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.682190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.462219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.111145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.401245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.419189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.286804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.416870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.411255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.324707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.124084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.937317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.392456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.093018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.308594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.269897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.959351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.613159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.311340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.090698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.799500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.584839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.262817] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.855225] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.020142] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.716553] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.691040] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.342773] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.024658] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.834717] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.152832] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.788818] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.687012] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.650635] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.674072] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.844604] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.895630] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.944702] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.615967] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.966187] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.491821] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.013672] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.242554] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.158203] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.326416] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.344727] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.740112] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.906738] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.712769] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.311035] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.326538] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.464233] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.420898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.989258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.096802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.655151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.216431] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.451416] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.458740] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.214355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.701660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.276001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.218018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.954468] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.546021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.906982] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.084106] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.063110] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.826416] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.310425] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.418823] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.232910] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.895996] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.346191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.647949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.670044] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.526855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.141602] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.776367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.600342] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.618164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.927856] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.657227] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.204346] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.591675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.080444] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.486694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.936035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.104858] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.123901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.349854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.964355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.967285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.520630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.294067] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.084595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.967896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.491699] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.621582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.464844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.862427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.796875] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.293945] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.623413] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.855896] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.277832] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.896851] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.303467] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.034363] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.809448] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.471619] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.000671] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.117798] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.457947] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.254883] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.929199] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.491455] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.049500] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.781189] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.046265] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.807434] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.908020] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.712769] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.172485] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.648987] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.871094] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.671997] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.796265] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.296021] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.962341] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.565125] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.616943] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.578369] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.090942] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.569946] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.692932] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.406647] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.951202] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.004730] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.751953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.881287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.899597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.303986] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.436127] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.399353] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.559265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.987213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.812927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.232727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.879395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.731628] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.889603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.763901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.386856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.842407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.402939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.541870] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.661148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.154709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.011246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.842590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.975853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.454971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.465897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.507530] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.088821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.380150] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.812042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.307396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.631706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.780891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.994583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.483810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.730103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.649513] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.678741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.246750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.033112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.389938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.284927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.778198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.625565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.008179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.596054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.324280] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.317688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.205780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.085022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.572327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.391235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.224243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.060181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.823456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.854553] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.720856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.879730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.284729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.827820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.028229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.150330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.339508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.907288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.246216] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.444153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.352814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.324158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.515686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.970703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.728333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.962097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.123108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.553589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.562012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.382996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.252625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.192139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.906616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.417114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.617859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.499756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.029114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.668213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.910706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.074890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.476196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.947754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.212219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.319031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.862000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.143799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.342896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.685730] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.395325] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.423401] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.196533] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.859070] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.250610] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.109802] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.911438] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.132385] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.260864] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.783752] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.467285] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.844971] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.422729] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.096313] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.672974] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.225769] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.914856] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.131592] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.881775] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.226685] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.788208] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.107300] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.842651] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.196411] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.223389] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.041870] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.107300] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.105591] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.504395] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.796021] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.419800] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.334595] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.817505] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.899414] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.648926] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.949463] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.860840] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.371216] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.510864] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.296631] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.615356] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.341675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.755127] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.896729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.809937] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.495361] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.957153] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.762573] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.041626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.734497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.980957] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.996704] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.339966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.954956] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.083557] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.847717] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.156616] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.282104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.380920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.574280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.145935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.418213] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.095642] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.640381] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.856445] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.317871] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.001831] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.144714] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.944397] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.793091] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.922424] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.670349] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.133362] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.260315] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.229431] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.874512] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.314026] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.196411] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.268677] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.100098] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.196716] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.261780] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.466309] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.845337] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.845581] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.697876] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.632263] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.302673] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.326111] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.685242] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.454224] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.104736] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.031616] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.318726] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.157654] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.532837] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.243134] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.043304] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.671234] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.121368] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.940643] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.412598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.771484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.609680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.447937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.620209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.460938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.006470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.618866] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.367401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.536072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.247650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.684830] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.373367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.743469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.601440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.289139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.443478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443485] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443474] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443447] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443390] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443329] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444164] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444693] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446815] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447603] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448597] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449553] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450569] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451605] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453430] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452858] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451326] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450556] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449554] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448460] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445415] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437792] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434349] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423218] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419205] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415163] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410759] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399084] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398451] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399050] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400944] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403723] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408691] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414082] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422390] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426960] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437138] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452854] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457832] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461857] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463869] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464535] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462860] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466860] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470308] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476435] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476242] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472898] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468952] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461775] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457890] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458771] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460609] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461287] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462049] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463814] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464800] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465658] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468149] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469135] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470932] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471773] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472525] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472933] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473618] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474421] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477617] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479656] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480785] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481783] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482706] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483604] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484797] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485716] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486086] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485701] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485254] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484571] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.499125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.507004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.512608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.519720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.527859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.536448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.545261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.553457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.561382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.568836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.576956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.585909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.597139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.607729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.619848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.633286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.652031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.675817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.704702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.749987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.799616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.861235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.938602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.039143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.181952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.326824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.490856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.675167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.152168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.423569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.721292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.040791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.421381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.829573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.323015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.840631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.380096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.981373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.711744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.459093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.216026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.055687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.987173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.984987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.082289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.227186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.494755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.749985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.159950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.694431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.157227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.698524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.416218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.247875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.991558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.856556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.768196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.797604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.917404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.349297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.730728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.027092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.314934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.952278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.901192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.742599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.623093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.067596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.375420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.761444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.495445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.219612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.616364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.448685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.116219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.857010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.505058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.118172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.924431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.554222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.695885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.590546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.609268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.414337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.480331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.878769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.113098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.238358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.268005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.749619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.711990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.365799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.370377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.597504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.789383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.176834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.989120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.575790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.298782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.331680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.344009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.781342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.770157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.233856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.129349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.004822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.309586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.465118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.765564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.947189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.669769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.406311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.487823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.205109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.662994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.285614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.407318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.970306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.916077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.354431] [T/O: true ][Cruise: false ] +[Elevator: -0.291544] [Roll: 0.495272] [Yaw: 0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.760742] [T/O: true ][Cruise: false ] +[Elevator: -0.291544] [Roll: 0.495272] [Yaw: 0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.077850] [T/O: true ][Cruise: false ] +[Elevator: -0.291544] [Roll: 0.495272] [Yaw: 0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.175446] [T/O: true ][Cruise: false ] +[Elevator: -0.466173] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.179291] [T/O: true ][Cruise: false ] +[Elevator: -0.498583] [Roll: 0.628871] [Yaw: 0.125774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.569061] [T/O: true ][Cruise: false ] +[Elevator: -0.455467] [Roll: 0.506157] [Yaw: 0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.927368] [T/O: true ][Cruise: false ] +[Elevator: -0.301346] [Roll: 0.185659] [Yaw: 0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.888763] [T/O: true ][Cruise: false ] +[Elevator: -0.037975] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.946716] [T/O: true ][Cruise: false ] +[Elevator: 0.174088] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.499084] [T/O: true ][Cruise: false ] +[Elevator: 0.295365] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.294739] [T/O: true ][Cruise: false ] +[Elevator: 0.375699] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.054230] [T/O: true ][Cruise: false ] +[Elevator: 0.375699] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.415405] [T/O: true ][Cruise: false ] +[Elevator: -0.136300] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.623230] [T/O: true ][Cruise: false ] +[Elevator: -0.243547] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.696136] [T/O: true ][Cruise: false ] +[Elevator: -0.233547] [Roll: 0.140671] [Yaw: 0.060134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.643951] [T/O: true ][Cruise: false ] +[Elevator: -0.223547] [Roll: 0.130671] [Yaw: 0.090134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.875702] [T/O: true ][Cruise: false ] +[Elevator: -0.213546] [Roll: 0.120671] [Yaw: 0.120134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.620300] [T/O: true ][Cruise: false ] +[Elevator: -0.203546] [Roll: 0.110671] [Yaw: 0.150134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.209930] [T/O: true ][Cruise: false ] +[Elevator: -0.193546] [Roll: 0.100671] [Yaw: 0.180134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.833832] [T/O: true ][Cruise: false ] +[Elevator: -0.183546] [Roll: 0.090671] [Yaw: 0.210134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.206146] [T/O: true ][Cruise: false ] +[Elevator: -0.173546] [Roll: 0.080671] [Yaw: 0.240134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.549866] [T/O: true ][Cruise: false ] +[Elevator: -0.163546] [Roll: 0.070671] [Yaw: 0.270134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.610382] [T/O: true ][Cruise: false ] +[Elevator: -0.153546] [Roll: 0.060671] [Yaw: 0.300134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.601257] [T/O: true ][Cruise: false ] +[Elevator: -0.143546] [Roll: 0.050671] [Yaw: 0.330134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.410919] [T/O: true ][Cruise: false ] +[Elevator: -0.133546] [Roll: 0.040671] [Yaw: 0.360134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.043488] [T/O: true ][Cruise: false ] +[Elevator: -0.123546] [Roll: 0.030671] [Yaw: 0.390134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.563171] [T/O: true ][Cruise: false ] +[Elevator: -0.113546] [Roll: 0.020671] [Yaw: 0.420134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.870575] [T/O: true ][Cruise: false ] +[Elevator: -0.103546] [Roll: 0.010671] [Yaw: 0.450134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.989105] [T/O: true ][Cruise: false ] +[Elevator: -0.093546] [Roll: 0.000671] [Yaw: 0.480134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.916260] [T/O: true ][Cruise: false ] +[Elevator: -0.083546] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.657959] [T/O: true ][Cruise: false ] +[Elevator: -0.073546] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.265991] [T/O: true ][Cruise: false ] +[Elevator: -0.063546] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.713928] [T/O: true ][Cruise: false ] +[Elevator: -0.053546] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.964783] [T/O: true ][Cruise: false ] +[Elevator: -0.043546] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.992065] [T/O: true ][Cruise: false ] +[Elevator: -0.033546] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.743988] [T/O: true ][Cruise: false ] +[Elevator: -0.023546] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.358704] [T/O: true ][Cruise: false ] +[Elevator: -0.013546] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.864685] [T/O: true ][Cruise: false ] +[Elevator: -0.003546] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.158722] [T/O: true ][Cruise: false ] +[Elevator: 0.006454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.305054] [T/O: true ][Cruise: false ] +[Elevator: 0.016454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.225586] [T/O: true ][Cruise: false ] +[Elevator: 0.026454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.934418] [T/O: true ][Cruise: false ] +[Elevator: 0.036454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.650116] [T/O: true ][Cruise: false ] +[Elevator: 0.046454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.526276] [T/O: true ][Cruise: false ] +[Elevator: 0.056454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.148010] [T/O: true ][Cruise: false ] +[Elevator: 0.066454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.706818] [T/O: true ][Cruise: false ] +[Elevator: 0.076454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.050903] [T/O: true ][Cruise: false ] +[Elevator: 0.086454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.489471] [T/O: true ][Cruise: false ] +[Elevator: 0.096454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.888519] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.153046] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.515778] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.782440] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.009583] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.219604] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.305450] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.403503] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.379333] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.758667] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.149963] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.375854] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.577179] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.075195] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.574585] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.193909] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.046173] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.007324] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.188507] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.576599] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.089722] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.711517] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.459290] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.432526] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.650024] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.996429] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.537842] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.278656] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.277466] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.497345] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.934998] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.567291] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.428253] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.456421] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.802063] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.242950] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.881897] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.819733] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.889038] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.173645] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.773682] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.721710] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.591187] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.568542] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.909485] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.558167] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.232605] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.320038] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.680328] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.744110] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.755890] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.886597] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.080658] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.597900] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.934357] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.559082] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.061310] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.840973] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.015198] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.020935] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.684204] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.856262] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.104950] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.893188] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.500183] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.314514] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.053497] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.535461] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.925507] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.378174] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.143250] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.933990] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.864868] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.881714] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.068085] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.252136] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.473511] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.211029] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.129700] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.330627] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.307068] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.113068] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.116455] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.564331] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.637329] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.281799] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.048645] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.997192] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.832153] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.196777] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.304138] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.433411] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.764587] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.611328] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.667786] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.098999] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.669617] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.466431] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.546326] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.401367] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.815002] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.828918] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.314514] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.534851] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.837708] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.727905] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.044617] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.382019] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.104187] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.552734] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.221497] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.977051] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.164795] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.563354] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.758850] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.131042] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.867371] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.397034] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.681152] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.068054] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.256348] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.413147] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.452698] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.377930] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.088867] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.744690] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.302124] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.488831] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.541443] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.531189] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.379883] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.254883] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.921692] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.461670] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.843872] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.095886] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.202148] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.186279] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.042114] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.797180] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.448975] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.999695] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.425598] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.726990] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.933228] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.036316] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.044739] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.928772] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.630005] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.271790] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.724548] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.221558] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.569336] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.823730] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.945618] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.938660] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.808777] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.665833] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.637573] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.395325] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.110596] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.513062] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.173828] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.712585] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.060852] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.546570] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.454651] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.472412] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.965942] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.242493] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.740601] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.305542] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.513977] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.989746] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.488464] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.720764] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.077881] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.582214] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.000061] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.554199] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.122192] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.772400] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.437561] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.116150] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.815918] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.502258] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.522705] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.652710] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.956909] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.357849] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.925171] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.468872] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.003906] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.706848] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.663940] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.075378] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.416504] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.934570] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.594177] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.418823] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.400085] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.524475] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.799377] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.244934] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.895142] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.729675] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.745239] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.965393] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.422852] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.082703] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.919189] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.773376] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.842224] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.570129] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.018066] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.014038] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.678467] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.606506] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.992554] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.545044] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.045227] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.703308] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.889160] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.911133] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.003845] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.893433] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.098511] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.401184] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.991455] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.132446] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.924622] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.769531] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.083252] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.068420] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.349731] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.530151] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.564697] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.523743] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.008057] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.677612] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.570068] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.991455] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.111633] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.158630] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.156860] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.152100] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.240662] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.761169] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.213867] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.277039] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.161133] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.770874] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.396667] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.843506] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.483582] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.687988] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.370728] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.634766] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.381042] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.200317] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.070129] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.304443] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.269470] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.472961] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.362366] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.212097] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.521667] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.134521] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.719238] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.480591] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.748474] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.290771] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.095703] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.057617] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.691101] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.780457] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.738403] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.337524] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.699097] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.058105] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.057373] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.397217] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.294983] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.220215] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.960876] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.801147] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.602600] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.078491] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.435486] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.772095] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.907410] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.953674] [T/O: true ][Cruise: false ] +[Elevator: 0.106454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.266968] [T/O: true ][Cruise: false ] +[Elevator: 0.096454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.061279] [T/O: false ][Cruise: true ] +[Elevator: 0.086454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.938538] [T/O: false ][Cruise: true ] +[Elevator: 0.076454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.843628] [T/O: false ][Cruise: true ] +[Elevator: 0.066454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.586121] [T/O: false ][Cruise: true ] +[Elevator: 0.056454] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.105530] [T/O: false ][Cruise: true ] +[Elevator: 0.046454] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.274475] [T/O: false ][Cruise: true ] +[Elevator: 0.036454] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.502441] [T/O: false ][Cruise: true ] +[Elevator: 0.026454] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.714294] [T/O: false ][Cruise: true ] +[Elevator: 0.016454] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.696167] [T/O: false ][Cruise: true ] +[Elevator: 0.006454] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.717773] [T/O: false ][Cruise: true ] +[Elevator: -0.003546] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.525879] [T/O: false ][Cruise: true ] +[Elevator: -0.013546] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.278809] [T/O: false ][Cruise: true ] +[Elevator: -0.023546] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.968750] [T/O: false ][Cruise: true ] +[Elevator: -0.033546] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.415283] [T/O: false ][Cruise: true ] +[Elevator: -0.043546] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.698120] [T/O: false ][Cruise: true ] +[Elevator: -0.053546] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.920776] [T/O: false ][Cruise: true ] +[Elevator: -0.063546] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.938843] [T/O: false ][Cruise: true ] +[Elevator: -0.073546] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.792603] [T/O: false ][Cruise: true ] +[Elevator: -0.083546] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.603882] [T/O: false ][Cruise: true ] +[Elevator: -0.093546] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.217529] [T/O: false ][Cruise: true ] +[Elevator: -0.103546] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.747314] [T/O: false ][Cruise: true ] +[Elevator: -0.113546] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.046997] [T/O: false ][Cruise: true ] +[Elevator: -0.123546] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.189453] [T/O: false ][Cruise: true ] +[Elevator: -0.133546] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.173096] [T/O: false ][Cruise: true ] +[Elevator: -0.143546] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.976807] [T/O: false ][Cruise: true ] +[Elevator: -0.153546] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.624146] [T/O: false ][Cruise: true ] +[Elevator: -0.163546] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.099976] [T/O: false ][Cruise: true ] +[Elevator: -0.173546] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.372070] [T/O: false ][Cruise: true ] +[Elevator: -0.183546] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.449585] [T/O: false ][Cruise: true ] +[Elevator: -0.193546] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.281494] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.030029] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.870850] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.046265] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.089844] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.829224] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.356262] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.371155] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.268738] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.908386] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.947876] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.130066] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.144897] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.731445] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.936157] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.050110] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.523438] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.555603] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.226257] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.573608] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.948730] [T/O: false ][Cruise: true ] +[Elevator: -0.203546] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.596130] [T/O: false ][Cruise: true ] +[Elevator: -0.193546] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.332092] [T/O: false ][Cruise: true ] +[Elevator: -0.183546] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.670898] [T/O: false ][Cruise: true ] +[Elevator: -0.173546] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.867432] [T/O: false ][Cruise: true ] +[Elevator: -0.163546] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.780090] [T/O: false ][Cruise: true ] +[Elevator: -0.153546] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.049133] [T/O: false ][Cruise: true ] +[Elevator: -0.143546] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.295349] [T/O: false ][Cruise: true ] +[Elevator: -0.133546] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.203979] [T/O: false ][Cruise: true ] +[Elevator: -0.123546] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.457764] [T/O: false ][Cruise: true ] +[Elevator: -0.113546] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.524475] [T/O: false ][Cruise: true ] +[Elevator: -0.103546] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.457886] [T/O: false ][Cruise: true ] +[Elevator: -0.093546] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.103088] [T/O: false ][Cruise: true ] +[Elevator: -0.083546] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.128906] [T/O: false ][Cruise: true ] +[Elevator: -0.073546] [Roll: 0.150671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.990967] [T/O: false ][Cruise: true ] +[Elevator: -0.063546] [Roll: 0.140671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.091858] [T/O: false ][Cruise: true ] +[Elevator: -0.053546] [Roll: 0.130671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.077332] [T/O: false ][Cruise: true ] +[Elevator: -0.043546] [Roll: 0.120671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.711792] [T/O: false ][Cruise: true ] +[Elevator: -0.033546] [Roll: 0.110671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.550842] [T/O: false ][Cruise: true ] +[Elevator: -0.023546] [Roll: 0.100671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.794128] [T/O: false ][Cruise: true ] +[Elevator: -0.013546] [Roll: 0.090671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.942078] [T/O: false ][Cruise: true ] +[Elevator: -0.003546] [Roll: 0.080671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.417419] [T/O: false ][Cruise: true ] +[Elevator: 0.006454] [Roll: 0.070671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.396057] [T/O: false ][Cruise: true ] +[Elevator: 0.016454] [Roll: 0.060671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.154114] [T/O: false ][Cruise: true ] +[Elevator: 0.026454] [Roll: 0.050671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.983887] [T/O: false ][Cruise: true ] +[Elevator: 0.036454] [Roll: 0.040671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.285400] [T/O: false ][Cruise: true ] +[Elevator: 0.046454] [Roll: 0.030671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.820496] [T/O: false ][Cruise: true ] +[Elevator: 0.056454] [Roll: 0.020671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.675781] [T/O: false ][Cruise: true ] +[Elevator: 0.066454] [Roll: 0.010671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.445984] [T/O: false ][Cruise: true ] +[Elevator: 0.076454] [Roll: 0.000671] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.053162] [T/O: false ][Cruise: true ] +[Elevator: 0.086454] [Roll: -0.009329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.102478] [T/O: false ][Cruise: true ] +[Elevator: 0.096454] [Roll: -0.019329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.468872] [T/O: false ][Cruise: true ] +[Elevator: 0.106454] [Roll: -0.029329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.246582] [T/O: false ][Cruise: true ] +[Elevator: 0.116454] [Roll: -0.039329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.019653] [T/O: false ][Cruise: true ] +[Elevator: 0.126454] [Roll: -0.049329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.379089] [T/O: false ][Cruise: true ] +[Elevator: 0.136454] [Roll: -0.059329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.993958] [T/O: false ][Cruise: true ] +[Elevator: 0.146454] [Roll: -0.069329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.915466] [T/O: false ][Cruise: true ] +[Elevator: 0.156454] [Roll: -0.079329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.440430] [T/O: false ][Cruise: true ] +[Elevator: 0.166454] [Roll: -0.089329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.009521] [T/O: false ][Cruise: true ] +[Elevator: 0.176454] [Roll: -0.099329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.767151] [T/O: false ][Cruise: true ] +[Elevator: 0.186454] [Roll: -0.109329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.162354] [T/O: false ][Cruise: true ] +[Elevator: 0.196454] [Roll: -0.119329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.172302] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.129329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.752686] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.139329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.855103] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.149329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.412781] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.513062] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.338928] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.669189] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.441284] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.054565] [T/O: false ][Cruise: true ] +[Elevator: 0.206454] [Roll: -0.159329] [Yaw: 0.510134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.169434] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.444235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444241] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444233] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444376] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444717] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446512] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447313] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448368] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449295] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450171] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451180] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452217] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453169] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455196] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455336] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454561] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453285] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451651] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449600] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448135] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446547] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444370] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435762] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432325] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417143] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413134] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409010] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399984] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401144] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406446] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411673] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413548] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418255] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424686] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429981] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435442] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445784] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456804] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465580] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467161] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466530] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465120] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463789] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463715] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464775] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466627] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473919] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474789] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458513] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459240] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461946] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463127] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470560] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471457] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471853] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472052] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472391] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472980] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473356] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473570] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473465] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473446] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473680] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477198] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478561] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479546] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480391] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480936] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481121] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481321] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482111] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483732] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485779] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487864] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.503664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.517122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.526039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.535978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.545563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.554068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.562309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.570728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.581345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.593317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.607399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.624371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.644461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.672354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.706913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.753746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.806047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.872686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.952276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.059198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.170698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.301651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.458122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.672194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.927866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.181881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.456753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.785664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.921392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.066772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.163944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.407446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.702354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.000790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.337067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.794655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.426952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.013290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.735435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.569866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.538162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.417782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.471607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.617599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.887589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.214176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.666832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.530354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.468697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.124695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.080902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.922485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.286758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.547554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.982964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.624664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.123962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.747856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.376114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.095879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.091141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.010719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.859993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.659630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.830467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.827957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.883804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.836136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.900345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.932648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.126007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.871155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.417557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.429993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.409195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.320572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.286423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.485504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.797302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.895828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.374512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.521225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.638016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.336777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.870758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.248810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.528046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.603775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.100143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.332489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.319153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.477676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.832840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.779099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.479340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.551453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.314575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.800964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.563110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.399628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.055481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.523621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.269501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.736328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.216034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.810760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.386078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.065002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.494812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.015198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.553864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.140045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.617645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.710815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.794159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.717377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.626709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.148132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.731842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.550842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.983459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.346344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.513916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.537018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.549377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.721161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.620148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.493805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.253937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.927948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.623169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.283203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.834869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.381805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.869965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.301300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.809845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.086945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.290466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.462891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.620972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.792419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.887634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.851929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.794403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.688080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.491913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.307220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.070770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.782104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.576141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.226898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.891479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.503906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.097046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.637848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.154327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.666046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.138245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.589752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.014954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.434723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.854431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.213806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.571625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.906677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.212738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.520508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.832123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.118073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.399475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.679138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.932129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.205688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.463135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.732788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.984192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.243805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.510651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.781616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.072327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.356506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.654816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.954865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.294128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.640503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.019196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.427765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.868622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.317902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.785217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.289948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.798126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.360168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.999023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.682343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.431915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.255219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.125183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.043579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.987213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.998749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.106140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.320892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.424255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.386688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.488647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.606323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.684418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.890320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.149506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.466461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.826050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.014832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.287231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.827911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.256409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.850464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.057983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.851318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.704803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.446503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.605164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.599854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.322388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.242676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.396729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.567688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.078735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.251831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.355530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.526276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.816772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.107117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.423126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.860870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.339783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.045593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.999207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.714111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.573608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.400635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.447937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.181580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.682251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.558838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.863953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.553223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.998474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.727295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.054993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.730103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.076416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.699463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.103455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.522583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.079712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.035461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.768127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.277283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.804260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.297852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.835327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.300781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.840576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.081970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.325562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.255127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.494385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.498047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.334656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.242981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.353027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.228821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.144836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.149414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.950867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.603943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.506836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.289063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.885376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.538696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.103333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.626770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.586548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.472229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.211670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.770264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.127991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.549683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.811707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.055603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.212524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.538635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.545654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.325867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.174927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.103271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.921753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.882935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.607239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.353210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.070740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.679077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.208984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.682983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.097717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.423157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.762817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.056885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.361328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.637207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.861511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.239929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.391785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.619446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.760803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.881836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.932007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.973206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.139404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.143555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.232117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.167297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.075195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.044678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.965698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.927673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.740845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.541016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.315613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.115540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.903503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.676880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.384338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.075500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.729858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.383423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.064209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.692871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.295227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.932068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.576965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.162842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.724915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.304993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.891479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.502625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.114990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.702576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.411926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.016296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.636658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.288635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.971313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.631165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.305054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.997314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.693970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.428101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.278015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.147339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.961975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.874146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.803833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.671997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.564270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.576294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.625488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.685852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.770691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.907410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.052246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.301880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.546997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.885132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.429932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.063599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.655762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.038391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.432800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.028564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.623230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.441284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.309265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.019531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.887329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.854248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.752563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.713928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.749817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.820190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.979553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.515808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.743835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.004639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.067017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.940369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.573486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.273376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.009888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.812195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.915466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.279541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.433350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.468384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.288147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.511414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.547668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.366821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.283813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.486328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.353271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.367737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.512573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.693787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.881531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.508240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.729065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.756836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.484680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.292542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.362915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.141052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.118408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.125366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.972961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.991272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.089172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.177979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.383850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.160278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.957153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.866028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.972107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.955627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.027344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.993958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.046021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.868713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.935913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.723877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.436646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.326416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.251160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.345886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.165405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.052856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.364746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.272034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.183350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.184448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.999756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.934814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.823547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.829468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.763672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.521667] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.054565] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.845825] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.531189] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.223450] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.880249] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.678223] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.428406] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.956238] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.462646] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.052490] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.277100] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.655273] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.892090] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.085327] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.233765] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.290039] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.468994] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.472534] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.368530] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.163208] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.914795] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.694702] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.316040] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.768799] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.107544] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.313110] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.328735] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.230591] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.055054] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.657959] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.128662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.466309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.639648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.625122] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.424438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.053223] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.540771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.864014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.025391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.948364] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.730713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.374756] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.584473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.766479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.672974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.329956] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.080200] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.488647] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.554443] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.335083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.972900] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.851440] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.399170] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.687500] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.704041] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.689697] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.453918] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.056763] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.369690] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.967896] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.374634] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.516846] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.567749] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.724731] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.249695] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.562012] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.828979] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.352417] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.496155] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.410583] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.323547] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.713745] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.429688] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.147095] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.784851] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.158203] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.167236] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.631775] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.018311] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.596191] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.201599] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.791260] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.618042] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.746887] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.937500] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.287659] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.994934] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.826294] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.032715] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.663757] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.692444] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.040222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.714478] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.816589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.362305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.391235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.964966] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.050964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.712708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.207947] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.022949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.831970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.811218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.914734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.285095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.318787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.885376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.230591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.779480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.419800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.627441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.606201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.226440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.050476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.963013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.276550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.601685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.598083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.844849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.038574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.108887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.668823] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.558716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.410645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.823608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.431396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.169678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.743896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.237915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.489014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.014648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.055176] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.454590] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.864380] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.712646] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.007446] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.454224] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.815552] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.452393] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.665894] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.203125] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.767944] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.321655] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.638550] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.214722] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.752319] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.957642] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.831299] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1457.616333] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.001221] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.058228] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1457.778320] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1457.238281] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.401733] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.151855] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.629639] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.010010] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.104980] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.805908] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.948975] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.028809] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.465210] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.559937] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.307251] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.254150] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.282104] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.244751] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.478760] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.149292] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.173096] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.370361] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.878296] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.698242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.618896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.998169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.518799] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.673584] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.848267] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.276001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.793091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.331421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.339478] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.243042] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.849854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.319580] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.898804] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.860840] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.043701] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.829956] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.412964] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.873901] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.497314] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.948242] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.163696] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.627441] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.562500] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.553711] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.629517] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.564209] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.767578] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.553223] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.106079] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.920166] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.333130] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.346191] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.306885] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.515747] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.504211] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.954468] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.203552] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.048401] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.306824] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.179504] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.630249] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.543152] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.944153] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.460266] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.145203] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.318115] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.704590] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.875366] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.122498] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.269165] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.976318] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.964722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.820923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.951843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.011597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.769958] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.822571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.970276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.801514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.758911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.625732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.392212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.212646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.962219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.718201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.782471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.501648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.306641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.029846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.333618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.232727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.271362] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.274475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.458496] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.447815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.128052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.184692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.749695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.059570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.465881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.295410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.151367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.305054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.585876] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.523254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.191101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.368286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.674316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.355347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.826355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.236084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.974854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.506226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.780945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.555603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.968262] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.897827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.580566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.956177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.451294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.291992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.939209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.635254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.961182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.117920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.036011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.310059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.856567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.510498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.436035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.088623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.903687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.099854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.374878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.983765] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.814697] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.779297] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.871826] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.748169] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.095337] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.952393] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.871582] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.137207] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.432007] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.060059] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.032959] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.123413] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.759399] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.389282] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.219116] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.693237] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.664673] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.750610] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.726807] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.488159] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.664673] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.386719] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.640503] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.233398] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.086182] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.260986] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.447021] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.265259] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.502197] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.726440] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.877563] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1504.513062] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1509.044067] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.068481] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1517.068848] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.085083] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.863159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.439575] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.010864] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.293457] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1538.409180] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1541.397827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.480713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.083130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.623901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.147095] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.359375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.539429] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.408936] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.195190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.607178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.615356] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.299805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.689087] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.767822] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.518311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.953369] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.066162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.954468] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.361084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.594116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1555.589966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.102661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.377563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.302002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.196655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.723877] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.109497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.144531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.771851] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.798950] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1519.084106] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.243530] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.475708] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1502.658813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.616333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.607300] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.330322] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.503906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.854492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.542114] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.660522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.534058] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.664185] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.457520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.101807] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.811279] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.604370] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.854248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.351318] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.348633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.065063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.940308] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.348633] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.886353] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.815063] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.087280] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.301392] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.194458] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.668701] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.455566] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.810547] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.565552] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.048218] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.616821] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.277222] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.216187] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.878906] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.729614] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.014160] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.293335] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.315674] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.644043] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.382446] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.083862] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.145996] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.623901] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.752625] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.562805] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.904236] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.494751] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.830261] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.852844] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.645386] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.713623] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.889893] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.175781] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.645020] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.766113] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.095337] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.152954] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.143311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.727966] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.740967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.286621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.752625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.362183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.413330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.653870] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.419678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.784698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.875519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.800537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.584229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.805664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.314758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.940216] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.048920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.890137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.390900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.103180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.333527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.446808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.964020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.275421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.430603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.839813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.444733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.560944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.437927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.679047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.773987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.505981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.146484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.871887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.428375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.085602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.557465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.251007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.510468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.832062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.464813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.935730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.365356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.661194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.963379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.461731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.829712] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.048218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.043457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.798645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.803711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.022339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.007507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.465576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.714905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.326965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.062744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.940918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.457642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.568176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.653442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.395447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.775146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.433960] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.335266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.941650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.076782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.988464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.493347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.648132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.956299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.149963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.053345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.169373] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.984619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.580200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.711670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.588196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.466919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.256714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.683472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.241577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.102661] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.394043] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.358032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.458130] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.255737] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.520752] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.757324] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.769653] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.666504] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.633789] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.314575] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.710815] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.950562] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.989990] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.869385] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.871094] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.861084] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.572021] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.322266] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.521118] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.055054] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.769043] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.877075] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.374634] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.579224] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.129883] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.048340] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.790161] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.791626] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.327026] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.905151] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.953247] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.360596] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.245239] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.535034] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.255737] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.433228] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.132446] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.273926] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.947266] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.003174] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.364502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.278564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.670166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.667725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.341553] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.626099] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.904419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.824219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.707153] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.808594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.283936] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.231201] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.045776] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.213501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.665039] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.954956] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.477051] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.662720] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.340942] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.343750] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.868042] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.158936] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.245483] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.393799] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.036865] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.428223] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.931641] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.949585] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.792114] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.000977] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.543579] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.759766] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.714600] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.587952] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.606750] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.382019] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.466492] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.454773] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.671997] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.830383] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.967957] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.508301] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.560669] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.201416] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.679749] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.839844] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.526733] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.779419] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.435974] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.207397] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.053284] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.607117] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.173096] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.841797] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.532227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.287231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.885437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.737976] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.205750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.116028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.147095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.192261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.427063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.993011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.587158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.417084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.698700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.044312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.010223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.830933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.255615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.295685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.100830] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.587158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.816498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.617889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.563782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.751938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.052277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.222443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.734711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.146484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.376892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.577835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.111435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.574051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.201859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.808807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.945328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.221878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.297684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.699600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.367279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.537369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.264893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.755249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.380890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.823547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.239197] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.678131] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.956329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.083069] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.663940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.793671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.570953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.990662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.299805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.226257] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.356964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.084534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.767700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.219727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.325134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.658264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.620117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.174255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.973633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.729919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.031555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.191895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.443115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.634766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.513916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.636047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.075684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.959900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.764343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.752869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.082886] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.408203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.567383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.640320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.600464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.687561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.123230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.901794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.792725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.772766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.254883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.556519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.621399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.239746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.659668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.188110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.078491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.414734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.260498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.820923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.395569] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.203735] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.612061] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.866028] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.002808] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.386597] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.186890] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.436768] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.782837] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.607788] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.543335] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.247559] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.603760] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.589722] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.442749] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.480591] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.597412] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.176270] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.097534] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.769409] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.583618] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.847900] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.403809] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.464844] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.949951] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.800049] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.146606] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.148560] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.655029] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.735718] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.297607] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.377075] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.909912] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.026367] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.662354] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.774902] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.349609] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.668701] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.262695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.211914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.020630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.516357] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.608154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.229126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.970703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.677612] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.254761] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.035767] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.834595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.216797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.779663] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.531738] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.143677] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.327026] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.382935] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.928467] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.185303] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.989014] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.118591] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.305786] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.938416] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.866577] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.569031] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.785950] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.328735] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.703796] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.368591] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.732117] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.792114] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.770142] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.555115] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.300720] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.090210] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.021729] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.011841] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.831848] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.610229] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.017761] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.154724] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.654114] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.685364] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.014526] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.182129] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.904480] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.213257] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.716919] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.598816] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.744995] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.947815] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.088562] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.451294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.775665] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.666321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.119629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.252563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.467834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.308563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.632294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.039001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.705811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.184296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.545349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.469818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.045563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.557648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.097595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.973846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.690918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.659103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.970581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.346405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.277557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.593719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.364883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.410431] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.802933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.707108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.153107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.034988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.395096] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.005203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.126190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.244125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.022018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.759659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.395721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.275421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.459518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.758011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.657104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.470245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.048035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.850708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.916656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.563202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.696289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.747833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.088684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.856781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.606049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.753845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.691986] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.718170] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.146912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.989899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.961212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.494141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.969360] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.130432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.020874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.072571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.999329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.440979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.725403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.360352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.856750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.087158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.809082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.050415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.375916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.668213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.400269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.483215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.012146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.923950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.250549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.284607] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.930786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.981384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.111267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.085022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.481384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.839844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.198792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.170166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.224121] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.874573] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.002258] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.010376] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.840393] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.448242] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.547485] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.668396] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.537781] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.238159] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.230347] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.775940] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.560364] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.379028] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.909180] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.301392] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.133545] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.925049] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.342285] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.720093] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.513794] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.142700] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.833740] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.044067] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.677856] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.232178] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.102905] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.615356] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.756226] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.810303] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.926025] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.596558] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.670166] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.323975] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.540161] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.383667] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.783691] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.803467] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.378418] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.547852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.431030] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.036255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.864136] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.313599] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.771973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.806396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.158325] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.384399] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.354492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.896362] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.997070] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.610718] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.633057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.347290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.413330] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.253296] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.913513] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.805359] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.847290] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.479187] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.063721] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.192322] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.730408] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.219360] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.322266] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.691650] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.544128] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.545410] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.932434] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.793457] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.303894] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.303772] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.171387] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.986450] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.032898] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.974304] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.392151] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.698120] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.586670] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.065002] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.010376] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.290710] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.335266] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.121765] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.677856] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.010864] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.740845] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.309082] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.706055] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.239319] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.954407] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.414612] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.593536] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.054962] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.241760] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.286163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.556244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.877258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.230408] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.971710] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.194275] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.024414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.961334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.338745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.041901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.359406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.459213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.553024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.030014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.463638] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.101654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.593719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.574738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.003601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.880341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.407387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.970345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.756798] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.518723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.544838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.605328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.282829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.395550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.744045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.151134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.698349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.344631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.153591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.262203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.371223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.354248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.246735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.225815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.421844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.336014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.376968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.068588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.693985] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.248856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.084595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.351791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.147736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.638443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.666367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.263733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.013947] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.522888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.378845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.303162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.509583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.583527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.110901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.398285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.862854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.807465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.751068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.467346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.051697] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.875946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.670319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.345062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.874664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.016541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.903564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.886719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.131165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.844116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.470703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.382141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.036560] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.840027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.579956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.610046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.741516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.578125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.765747] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.573242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.884460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.919250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.235535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.645935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.109070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.848145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.183350] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.375122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.925903] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.010803] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.436279] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.269165] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.998840] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.470093] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.717712] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.725037] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.951294] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.000549] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.951233] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.904480] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.028381] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.296082] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.882935] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.129517] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.821655] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.306030] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.056824] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.866821] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.181091] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.084717] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.538452] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.469299] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.913635] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.848633] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.440002] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.790955] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.512695] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.953064] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.764038] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.265869] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.345093] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.989075] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.122192] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.794434] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.929443] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.547180] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.710754] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.602966] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.096680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.843933] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.050598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.150818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.829102] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.528381] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.623962] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.316284] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.944397] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.302246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.024597] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.867493] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.936646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.158813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.579407] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.775818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.952087] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.456909] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.845398] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.695129] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.943481] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.950256] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.161255] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.906311] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.750183] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.662537] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.930725] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.917542] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.012451] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.359375] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.620850] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.029175] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.326782] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.581482] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.275085] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.007141] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.097351] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.381897] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.115234] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.272522] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.951294] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.348022] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.704773] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.647400] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.105469] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.917419] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.213257] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.148010] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.283813] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.571228] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.785370] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.546478] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.542847] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.285583] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.018188] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.603668] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.170502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.735291] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.560760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.699463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.499878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.691986] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.055176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.179703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.908264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.972366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.521225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.478165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.315699] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.342464] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.362732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.379063] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394768] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.412971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419189] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424698] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429352] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433086] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439880] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442410] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444719] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446510] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448339] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449917] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451447] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453863] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455431] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455248] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454851] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454348] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453655] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451952] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445324] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441856] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438437] [T/O: true ][Cruise: false ] +[Elevator: -0.188383] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435200] [T/O: true ][Cruise: false ] +[Elevator: -0.188383] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431684] [T/O: true ][Cruise: false ] +[Elevator: 0.040531] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428402] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: 0.101193] [Yaw: 0.020239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424477] [T/O: true ][Cruise: false ] +[Elevator: 0.386004] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420448] [T/O: true ][Cruise: false ] +[Elevator: 0.459643] [Roll: 0.101193] [Yaw: 0.020239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415972] [T/O: true ][Cruise: false ] +[Elevator: 0.580218] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411146] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.057714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406168] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.057714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402174] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.087714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400436] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.117714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400892] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.147714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404268] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.177714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410374] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.207714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419722] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.237714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430983] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.267714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443155] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.297714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455921] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.327714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469177] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.357714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482386] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.387714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496620] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.417714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509548] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.447714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.522093] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.477714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.535305] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.549103] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.563082] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.575573] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.586264] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.596064] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.605217] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.612116] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.617165] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.620756] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.622797] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.623268] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.622528] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.621092] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.620035] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.620691] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.622969] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.625664] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.628233] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.630640] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.633131] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.636475] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.640846] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.646954] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.654593] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.663609] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.674959] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.688728] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.704998] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.725626] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.750048] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.777060] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.807087] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.843225] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.887081] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.939280] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.001804] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.078428] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.177010] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.292067] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.424421] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.583767] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.763298] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.971977] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.218096] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.496428] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.797405] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.205147] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.686913] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.226376] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.794662] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.506067] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.205011] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.989994] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.924488] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.730761] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.644995] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.489191] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.468660] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.379692] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.351511] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.368605] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.635895] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.768715] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.917656] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.979038] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.301231] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.425606] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.438862] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.349300] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.254173] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.196060] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.030510] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.727371] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.326263] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.814732] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.138237] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.331169] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.378796] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.265949] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.957401] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.522732] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.799767] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.852509] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.661510] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.288571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.267544] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.278571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.853470] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.268571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.258571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.248571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.238571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.228571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.218571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.208571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.198571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.188571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.178571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.168571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.148571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 0.158571] [Yaw: 0.507714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.205910] [T/O: true ][Cruise: false ] +[Elevator: 0.417248] [Roll: -0.420448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2153.198242] [T/O: true ][Cruise: false ] +[Elevator: 0.407248] [Roll: -0.410448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2152.237549] [T/O: false ][Cruise: true ] +[Elevator: 0.397248] [Roll: -0.400448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2151.224365] [T/O: false ][Cruise: true ] +[Elevator: 0.387248] [Roll: -0.390448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2150.067383] [T/O: false ][Cruise: true ] +[Elevator: 0.377248] [Roll: -0.380448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2148.739990] [T/O: false ][Cruise: true ] +[Elevator: 0.367248] [Roll: -0.370448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2146.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.357248] [Roll: -0.360448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2144.800049] [T/O: false ][Cruise: true ] +[Elevator: 0.347248] [Roll: -0.350448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2142.746094] [T/O: false ][Cruise: true ] +[Elevator: 0.337248] [Roll: -0.340448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2140.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.327248] [Roll: -0.330448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2137.961182] [T/O: false ][Cruise: true ] +[Elevator: 0.317248] [Roll: -0.320448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2135.027344] [T/O: false ][Cruise: true ] +[Elevator: 0.307248] [Roll: -0.310448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2131.749756] [T/O: false ][Cruise: true ] +[Elevator: 0.297248] [Roll: -0.300448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2128.288818] [T/O: false ][Cruise: true ] +[Elevator: 0.287248] [Roll: -0.290448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2123.968018] [T/O: false ][Cruise: true ] +[Elevator: 0.277248] [Roll: -0.280448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2119.777344] [T/O: false ][Cruise: true ] +[Elevator: 0.267248] [Roll: -0.270448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2116.044678] [T/O: false ][Cruise: true ] +[Elevator: 0.257248] [Roll: -0.260448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2111.859131] [T/O: false ][Cruise: true ] +[Elevator: 0.247248] [Roll: -0.250448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2107.633545] [T/O: false ][Cruise: true ] +[Elevator: 0.237248] [Roll: -0.240448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2102.964844] [T/O: false ][Cruise: true ] +[Elevator: 0.227248] [Roll: -0.230448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2098.156738] [T/O: false ][Cruise: true ] +[Elevator: 0.217248] [Roll: -0.220448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2093.168213] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.210448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2088.115234] [T/O: false ][Cruise: true ] +[Elevator: 0.197248] [Roll: -0.200448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2082.898193] [T/O: false ][Cruise: true ] +[Elevator: 0.187248] [Roll: -0.190448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2077.352783] [T/O: false ][Cruise: true ] +[Elevator: 0.177248] [Roll: -0.180448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2070.521240] [T/O: false ][Cruise: true ] +[Elevator: 0.167248] [Roll: -0.170448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2063.747314] [T/O: false ][Cruise: true ] +[Elevator: 0.157248] [Roll: -0.160448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2056.691650] [T/O: false ][Cruise: true ] +[Elevator: 0.147248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2048.617920] [T/O: false ][Cruise: true ] +[Elevator: 0.137248] [Roll: -0.140448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2040.214600] [T/O: false ][Cruise: true ] +[Elevator: 0.127248] [Roll: -0.130448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2031.734741] [T/O: false ][Cruise: true ] +[Elevator: 0.117248] [Roll: -0.120448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2024.016724] [T/O: false ][Cruise: true ] +[Elevator: 0.107248] [Roll: -0.110448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2015.811401] [T/O: false ][Cruise: true ] +[Elevator: 0.097248] [Roll: -0.100448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2007.316772] [T/O: false ][Cruise: true ] +[Elevator: 0.087248] [Roll: -0.090448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1998.250977] [T/O: false ][Cruise: true ] +[Elevator: 0.077248] [Roll: -0.080448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1990.019409] [T/O: false ][Cruise: true ] +[Elevator: 0.067248] [Roll: -0.070448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1982.183105] [T/O: false ][Cruise: true ] +[Elevator: 0.057248] [Roll: -0.060448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1974.176880] [T/O: false ][Cruise: true ] +[Elevator: 0.047248] [Roll: -0.050448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1966.330566] [T/O: false ][Cruise: true ] +[Elevator: 0.037248] [Roll: -0.040448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1954.896606] [T/O: false ][Cruise: true ] +[Elevator: 0.047248] [Roll: -0.030448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1945.042725] [T/O: false ][Cruise: true ] +[Elevator: 0.057248] [Roll: -0.020448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1933.652588] [T/O: false ][Cruise: true ] +[Elevator: 0.067248] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1923.075439] [T/O: false ][Cruise: true ] +[Elevator: 0.077248] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1912.247314] [T/O: false ][Cruise: true ] +[Elevator: 0.087248] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1901.133911] [T/O: false ][Cruise: true ] +[Elevator: 0.097248] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1889.855713] [T/O: false ][Cruise: true ] +[Elevator: 0.107248] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1879.333496] [T/O: false ][Cruise: true ] +[Elevator: 0.117248] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1868.542603] [T/O: false ][Cruise: true ] +[Elevator: 0.127248] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1856.452881] [T/O: false ][Cruise: true ] +[Elevator: 0.137248] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1844.245483] [T/O: false ][Cruise: true ] +[Elevator: 0.147248] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1833.379150] [T/O: false ][Cruise: true ] +[Elevator: 0.157248] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1822.430664] [T/O: false ][Cruise: true ] +[Elevator: 0.167248] [Roll: 0.089552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1811.434204] [T/O: false ][Cruise: true ] +[Elevator: 0.177248] [Roll: 0.099552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1800.108398] [T/O: false ][Cruise: true ] +[Elevator: 0.187248] [Roll: 0.109552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1788.785278] [T/O: false ][Cruise: true ] +[Elevator: 0.197248] [Roll: 0.119552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1777.624634] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.129552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1766.552368] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.139552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.342163] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.149552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1741.100830] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1729.621704] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1718.779419] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1705.755737] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1693.286011] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1680.435181] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1667.034912] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1654.927979] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1640.278076] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1627.287109] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1613.811279] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1600.411011] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1587.099854] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1575.036133] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1563.351318] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1551.819458] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1539.656372] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1527.791016] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1514.988159] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1501.195679] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1489.713989] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1479.051514] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1469.456665] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1458.314453] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1445.278687] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1435.172852] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1424.972778] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1416.413574] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1408.461548] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1401.102295] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1393.773071] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.149552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1386.507690] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.139552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1379.698608] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.129552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1373.435669] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.119552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1367.776489] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.109552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1362.865356] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.099552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1358.202026] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.089552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1354.275513] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1350.583740] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1347.272705] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1344.243164] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1341.994507] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1339.883301] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1338.459106] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1337.296997] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1336.581543] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1336.264648] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1336.444946] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.020448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1337.141357] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.030448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1338.403442] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.040448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1340.245361] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.050448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1342.385986] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.060448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1344.814209] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.070448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1347.555054] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.080448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1350.567017] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.090448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1354.171021] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.100448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1358.337769] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.110448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1363.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.120448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1369.411865] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.130448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1376.005981] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.140448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1383.679565] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1389.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1396.475708] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1404.071899] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1411.576660] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1418.157227] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1424.839722] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1431.815186] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1438.571777] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1446.770386] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1455.868408] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1463.525024] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1472.382446] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1480.427856] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.150448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1488.254028] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.140448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1495.794067] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.130448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1503.506836] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.120448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1511.302856] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.110448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1519.314575] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.100448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1526.923584] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.090448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1534.807495] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.080448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1542.462524] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.070448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1550.010986] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.060448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1558.155396] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.050448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1566.036133] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.040448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1573.545898] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.030448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1581.439087] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.020448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1589.313110] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1596.777100] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1604.395752] [T/O: false ][Cruise: true ] +[Elevator: 0.197248] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1612.172607] [T/O: false ][Cruise: true ] +[Elevator: 0.187248] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1620.676025] [T/O: false ][Cruise: true ] +[Elevator: 0.177248] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1628.627930] [T/O: false ][Cruise: true ] +[Elevator: 0.167248] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1635.997437] [T/O: false ][Cruise: true ] +[Elevator: 0.157248] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1643.725586] [T/O: false ][Cruise: true ] +[Elevator: 0.147248] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1650.975830] [T/O: false ][Cruise: true ] +[Elevator: 0.137248] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1658.176392] [T/O: false ][Cruise: true ] +[Elevator: 0.127248] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1665.315552] [T/O: false ][Cruise: true ] +[Elevator: 0.117248] [Roll: 0.089552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1672.145020] [T/O: false ][Cruise: true ] +[Elevator: 0.107248] [Roll: 0.099552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1679.670532] [T/O: false ][Cruise: true ] +[Elevator: 0.097248] [Roll: 0.109552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1686.806763] [T/O: false ][Cruise: true ] +[Elevator: 0.087248] [Roll: 0.119552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1693.046997] [T/O: false ][Cruise: true ] +[Elevator: 0.077248] [Roll: 0.129552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1699.332275] [T/O: false ][Cruise: true ] +[Elevator: 0.067248] [Roll: 0.139552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1761.952515] [T/O: true ][Cruise: false ] +[Elevator: 0.057248] [Roll: 0.149552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1754.653809] [T/O: false ][Cruise: true ] +[Elevator: 0.047248] [Roll: 0.159552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1749.647705] [T/O: false ][Cruise: true ] +[Elevator: 0.037248] [Roll: 0.149552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1744.286255] [T/O: false ][Cruise: true ] +[Elevator: 0.027248] [Roll: 0.139552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1739.388306] [T/O: false ][Cruise: true ] +[Elevator: 0.017248] [Roll: 0.129552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1734.061401] [T/O: false ][Cruise: true ] +[Elevator: 0.007248] [Roll: 0.119552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1728.699707] [T/O: false ][Cruise: true ] +[Elevator: -0.002752] [Roll: 0.109552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1723.505859] [T/O: false ][Cruise: true ] +[Elevator: -0.012752] [Roll: 0.099552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1717.379761] [T/O: false ][Cruise: true ] +[Elevator: -0.022752] [Roll: 0.089552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1708.785767] [T/O: false ][Cruise: true ] +[Elevator: -0.032752] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1701.192261] [T/O: false ][Cruise: true ] +[Elevator: -0.042752] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1693.609131] [T/O: false ][Cruise: true ] +[Elevator: -0.052752] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1685.734985] [T/O: false ][Cruise: true ] +[Elevator: -0.062752] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1678.885620] [T/O: false ][Cruise: true ] +[Elevator: -0.072752] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1670.848145] [T/O: false ][Cruise: true ] +[Elevator: -0.082752] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1663.608154] [T/O: false ][Cruise: true ] +[Elevator: -0.092752] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1656.579346] [T/O: false ][Cruise: true ] +[Elevator: -0.102752] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1647.453369] [T/O: false ][Cruise: true ] +[Elevator: -0.112752] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1639.634399] [T/O: false ][Cruise: true ] +[Elevator: -0.122752] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1630.098755] [T/O: false ][Cruise: true ] +[Elevator: -0.132752] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1620.915894] [T/O: false ][Cruise: true ] +[Elevator: -0.142752] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1612.440063] [T/O: false ][Cruise: true ] +[Elevator: -0.152752] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1603.316528] [T/O: false ][Cruise: true ] +[Elevator: -0.162752] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1594.383423] [T/O: false ][Cruise: true ] +[Elevator: -0.172752] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1585.884277] [T/O: false ][Cruise: true ] +[Elevator: -0.182752] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1577.250610] [T/O: false ][Cruise: true ] +[Elevator: -0.192752] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1568.637939] [T/O: false ][Cruise: true ] +[Elevator: -0.202752] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1560.051514] [T/O: false ][Cruise: true ] +[Elevator: -0.202752] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1550.685791] [T/O: false ][Cruise: true ] +[Elevator: -0.202752] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1541.182251] [T/O: false ][Cruise: true ] +[Elevator: -0.192752] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1532.082275] [T/O: false ][Cruise: true ] +[Elevator: -0.182752] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1522.619385] [T/O: false ][Cruise: true ] +[Elevator: -0.172752] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1513.192505] [T/O: false ][Cruise: true ] +[Elevator: -0.162752] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1504.150513] [T/O: false ][Cruise: true ] +[Elevator: -0.152752] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1495.063843] [T/O: false ][Cruise: true ] +[Elevator: -0.142752] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1485.311279] [T/O: false ][Cruise: true ] +[Elevator: -0.132752] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1473.723267] [T/O: false ][Cruise: true ] +[Elevator: -0.122752] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1462.282837] [T/O: false ][Cruise: true ] +[Elevator: -0.112752] [Roll: -0.020448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1451.388550] [T/O: false ][Cruise: true ] +[Elevator: -0.102752] [Roll: -0.030448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1440.670166] [T/O: false ][Cruise: true ] +[Elevator: -0.092752] [Roll: -0.040448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1429.728149] [T/O: false ][Cruise: true ] +[Elevator: -0.082752] [Roll: -0.050448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1419.147339] [T/O: false ][Cruise: true ] +[Elevator: -0.072752] [Roll: -0.060448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1408.157227] [T/O: false ][Cruise: true ] +[Elevator: -0.062752] [Roll: -0.070448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1396.656738] [T/O: false ][Cruise: true ] +[Elevator: -0.052752] [Roll: -0.080448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1385.637451] [T/O: false ][Cruise: true ] +[Elevator: -0.042752] [Roll: -0.090448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1373.346313] [T/O: false ][Cruise: true ] +[Elevator: -0.032752] [Roll: -0.100448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1361.420776] [T/O: false ][Cruise: true ] +[Elevator: -0.022752] [Roll: -0.110448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1349.659058] [T/O: false ][Cruise: true ] +[Elevator: -0.012752] [Roll: -0.120448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1338.377930] [T/O: false ][Cruise: true ] +[Elevator: -0.002752] [Roll: -0.130448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1326.143188] [T/O: false ][Cruise: true ] +[Elevator: 0.007248] [Roll: -0.120448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1314.085083] [T/O: false ][Cruise: true ] +[Elevator: 0.017248] [Roll: -0.110448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1302.969727] [T/O: false ][Cruise: true ] +[Elevator: 0.027248] [Roll: -0.100448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1291.076050] [T/O: false ][Cruise: true ] +[Elevator: 0.037248] [Roll: -0.090448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1279.823853] [T/O: false ][Cruise: true ] +[Elevator: 0.047248] [Roll: -0.080448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1267.483398] [T/O: false ][Cruise: true ] +[Elevator: 0.057248] [Roll: -0.070448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1255.154907] [T/O: false ][Cruise: true ] +[Elevator: 0.067248] [Roll: -0.060448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1242.931274] [T/O: false ][Cruise: true ] +[Elevator: 0.077248] [Roll: -0.050448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1230.602783] [T/O: false ][Cruise: true ] +[Elevator: 0.087248] [Roll: -0.040448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1217.576172] [T/O: false ][Cruise: true ] +[Elevator: 0.097248] [Roll: -0.030448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1205.446533] [T/O: false ][Cruise: true ] +[Elevator: 0.107248] [Roll: -0.020448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1192.146240] [T/O: false ][Cruise: true ] +[Elevator: 0.117248] [Roll: -0.010448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1178.428223] [T/O: false ][Cruise: true ] +[Elevator: 0.127248] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1165.022217] [T/O: false ][Cruise: true ] +[Elevator: 0.137248] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1150.425903] [T/O: false ][Cruise: true ] +[Elevator: 0.147248] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1136.158447] [T/O: false ][Cruise: true ] +[Elevator: 0.157248] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1121.234009] [T/O: false ][Cruise: true ] +[Elevator: 0.167248] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1105.864136] [T/O: false ][Cruise: true ] +[Elevator: 0.177248] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1089.855835] [T/O: false ][Cruise: true ] +[Elevator: 0.187248] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1074.202515] [T/O: false ][Cruise: true ] +[Elevator: 0.197248] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1058.740112] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.079552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1042.472412] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.069552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1028.000977] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.059552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1013.734558] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.049552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1000.064148] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.039552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 984.965088] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.029552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 973.394714] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.019552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 963.851379] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: 0.009552] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 954.425110] [T/O: false ][Cruise: true ] +[Elevator: 0.207248] [Roll: -0.000448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 945.157104] [T/O: false ][Cruise: true ] +[Elevator: 0.365450] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 936.422668] [T/O: false ][Cruise: true ] +[Elevator: 0.365450] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 928.241394] [T/O: false ][Cruise: true ] +[Elevator: 0.365450] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 920.961426] [T/O: false ][Cruise: true ] +[Elevator: 0.305192] [Roll: -0.420448] [Yaw: -0.084090] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 913.775208] [T/O: false ][Cruise: true ] +[Elevator: 0.122932] [Roll: -0.070628] [Yaw: -0.014126] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 906.811890] [T/O: false ][Cruise: true ] +[Elevator: 0.068393] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 900.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.004409] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 894.918030] [T/O: false ][Cruise: true ] +[Elevator: -0.170652] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 889.532349] [T/O: false ][Cruise: true ] +[Elevator: -0.170652] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.063232] [T/O: false ][Cruise: true ] +[Elevator: -0.170652] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 881.115540] [T/O: false ][Cruise: true ] +[Elevator: -0.170652] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 877.684570] [T/O: false ][Cruise: true ] +[Elevator: -0.170652] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 874.669067] [T/O: false ][Cruise: true ] +[Elevator: -0.161921] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 872.173828] [T/O: false ][Cruise: true ] +[Elevator: -0.161921] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 870.117798] [T/O: false ][Cruise: true ] +[Elevator: -0.234159] [Roll: 0.101193] [Yaw: 0.020239] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 868.402222] [T/O: false ][Cruise: true ] +[Elevator: -0.311211] [Roll: 0.063349] [Yaw: 0.012670] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 867.113098] [T/O: false ][Cruise: true ] +[Elevator: -0.413152] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 866.241028] [T/O: false ][Cruise: true ] +[Elevator: -0.476928] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 865.742065] [T/O: false ][Cruise: true ] +[Elevator: -0.553542] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 865.524719] [T/O: false ][Cruise: true ] +[Elevator: -0.564670] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 865.615967] [T/O: false ][Cruise: true ] +[Elevator: -0.575842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 865.967712] [T/O: false ][Cruise: true ] +[Elevator: -0.565842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 866.544556] [T/O: false ][Cruise: true ] +[Elevator: -0.555842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 867.347290] [T/O: false ][Cruise: true ] +[Elevator: -0.545842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 868.450073] [T/O: false ][Cruise: true ] +[Elevator: -0.535842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 869.716309] [T/O: false ][Cruise: true ] +[Elevator: -0.525842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 871.168518] [T/O: false ][Cruise: true ] +[Elevator: -0.515842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 872.525452] [T/O: false ][Cruise: true ] +[Elevator: -0.505842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 874.155212] [T/O: false ][Cruise: true ] +[Elevator: -0.495842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 875.550720] [T/O: false ][Cruise: true ] +[Elevator: -0.485842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 876.889221] [T/O: false ][Cruise: true ] +[Elevator: -0.475842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 878.216553] [T/O: false ][Cruise: true ] +[Elevator: -0.465842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 879.643066] [T/O: false ][Cruise: true ] +[Elevator: -0.455842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 880.897888] [T/O: false ][Cruise: true ] +[Elevator: -0.445842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.027222] [T/O: false ][Cruise: true ] +[Elevator: -0.435842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.108765] [T/O: false ][Cruise: true ] +[Elevator: -0.425842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 884.347839] [T/O: false ][Cruise: true ] +[Elevator: -0.415842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.337280] [T/O: false ][Cruise: true ] +[Elevator: -0.405842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.151855] [T/O: false ][Cruise: true ] +[Elevator: -0.395842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.840454] [T/O: false ][Cruise: true ] +[Elevator: -0.385842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 887.373291] [T/O: false ][Cruise: true ] +[Elevator: -0.375842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 887.879700] [T/O: false ][Cruise: true ] +[Elevator: -0.365842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.262756] [T/O: false ][Cruise: true ] +[Elevator: -0.355842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.537292] [T/O: false ][Cruise: true ] +[Elevator: -0.345842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.721069] [T/O: false ][Cruise: true ] +[Elevator: -0.335842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.846558] [T/O: false ][Cruise: true ] +[Elevator: -0.325842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.893311] [T/O: false ][Cruise: true ] +[Elevator: -0.315842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.878357] [T/O: false ][Cruise: true ] +[Elevator: -0.305842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.806030] [T/O: false ][Cruise: true ] +[Elevator: -0.295842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.679626] [T/O: false ][Cruise: true ] +[Elevator: -0.285842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.482910] [T/O: false ][Cruise: true ] +[Elevator: -0.275842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.247864] [T/O: false ][Cruise: true ] +[Elevator: -0.265842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 887.967896] [T/O: false ][Cruise: true ] +[Elevator: -0.255842] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 887.662354] [T/O: false ][Cruise: true ] +[Elevator: -0.245842] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 887.334900] [T/O: false ][Cruise: true ] +[Elevator: -0.235842] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.983582] [T/O: false ][Cruise: true ] +[Elevator: -0.225842] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.619080] [T/O: false ][Cruise: true ] +[Elevator: -0.215842] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.234314] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.831909] [T/O: false ][Cruise: true ] +[Elevator: -0.195842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.442078] [T/O: false ][Cruise: true ] +[Elevator: -0.185842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.044983] [T/O: false ][Cruise: true ] +[Elevator: -0.175842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 884.652588] [T/O: false ][Cruise: true ] +[Elevator: -0.165842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 884.272583] [T/O: false ][Cruise: true ] +[Elevator: -0.155842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.905579] [T/O: false ][Cruise: true ] +[Elevator: -0.145842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.565247] [T/O: false ][Cruise: true ] +[Elevator: -0.135842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.253967] [T/O: false ][Cruise: true ] +[Elevator: -0.125842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.989136] [T/O: false ][Cruise: true ] +[Elevator: -0.115842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.765747] [T/O: false ][Cruise: true ] +[Elevator: -0.105842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.595459] [T/O: false ][Cruise: true ] +[Elevator: -0.095842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.469360] [T/O: false ][Cruise: true ] +[Elevator: -0.085842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.396973] [T/O: false ][Cruise: true ] +[Elevator: -0.075842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.383667] [T/O: false ][Cruise: true ] +[Elevator: -0.065842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.429260] [T/O: false ][Cruise: true ] +[Elevator: -0.055842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.548401] [T/O: false ][Cruise: true ] +[Elevator: -0.045842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 882.740051] [T/O: false ][Cruise: true ] +[Elevator: -0.035842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.017151] [T/O: false ][Cruise: true ] +[Elevator: -0.025842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.380249] [T/O: false ][Cruise: true ] +[Elevator: -0.015842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.811951] [T/O: false ][Cruise: true ] +[Elevator: -0.005842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 884.372864] [T/O: false ][Cruise: true ] +[Elevator: 0.004158] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.107483] [T/O: false ][Cruise: true ] +[Elevator: 0.014158] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 885.948059] [T/O: false ][Cruise: true ] +[Elevator: 0.024158] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 886.809021] [T/O: false ][Cruise: true ] +[Elevator: 0.034158] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 888.063599] [T/O: false ][Cruise: true ] +[Elevator: 0.044158] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 889.413086] [T/O: false ][Cruise: true ] +[Elevator: 0.054158] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 890.931702] [T/O: false ][Cruise: true ] +[Elevator: 0.064158] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 892.577454] [T/O: false ][Cruise: true ] +[Elevator: 0.074158] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 894.594604] [T/O: false ][Cruise: true ] +[Elevator: 0.084158] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 896.842407] [T/O: false ][Cruise: true ] +[Elevator: 0.094158] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 899.256653] [T/O: false ][Cruise: true ] +[Elevator: 0.104158] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 901.847290] [T/O: false ][Cruise: true ] +[Elevator: 0.114158] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 905.195801] [T/O: false ][Cruise: true ] +[Elevator: 0.124158] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 907.938354] [T/O: false ][Cruise: true ] +[Elevator: 0.134158] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 910.716003] [T/O: false ][Cruise: true ] +[Elevator: 0.144158] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 913.701355] [T/O: false ][Cruise: true ] +[Elevator: 0.154158] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 916.999573] [T/O: false ][Cruise: true ] +[Elevator: 0.164158] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 920.041565] [T/O: false ][Cruise: true ] +[Elevator: 0.174158] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 923.207703] [T/O: false ][Cruise: true ] +[Elevator: 0.184158] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 926.354370] [T/O: false ][Cruise: true ] +[Elevator: 0.194158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 930.237976] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 933.983032] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 937.879456] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 942.362915] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 947.163086] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 952.442139] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 956.784302] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 961.190857] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 965.389465] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 969.561768] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 974.430786] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 980.215271] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 985.596375] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 990.757324] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 995.700256] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1001.137878] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1006.942078] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1012.301331] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1017.665039] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1023.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1028.751953] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1034.053589] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1039.490601] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1045.114746] [T/O: false ][Cruise: true ] +[Elevator: 0.194158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1050.802246] [T/O: false ][Cruise: true ] +[Elevator: 0.184158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1056.941650] [T/O: false ][Cruise: true ] +[Elevator: 0.174158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1062.774048] [T/O: false ][Cruise: true ] +[Elevator: 0.164158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1068.354736] [T/O: false ][Cruise: true ] +[Elevator: 0.154158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1076.035034] [T/O: false ][Cruise: true ] +[Elevator: 0.144158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1082.480469] [T/O: false ][Cruise: true ] +[Elevator: 0.134158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1088.192871] [T/O: false ][Cruise: true ] +[Elevator: 0.124158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1093.776001] [T/O: false ][Cruise: true ] +[Elevator: 0.114158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1099.373535] [T/O: false ][Cruise: true ] +[Elevator: 0.104158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1104.965820] [T/O: false ][Cruise: true ] +[Elevator: 0.094158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1110.288208] [T/O: false ][Cruise: true ] +[Elevator: 0.084158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1115.533936] [T/O: false ][Cruise: true ] +[Elevator: 0.074158] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1121.483887] [T/O: false ][Cruise: true ] +[Elevator: 0.064158] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1127.065918] [T/O: false ][Cruise: true ] +[Elevator: 0.054158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1132.689209] [T/O: false ][Cruise: true ] +[Elevator: 0.044158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1137.966919] [T/O: false ][Cruise: true ] +[Elevator: 0.034158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1142.762329] [T/O: false ][Cruise: true ] +[Elevator: 0.024158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1147.530273] [T/O: false ][Cruise: true ] +[Elevator: 0.014158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1152.652954] [T/O: false ][Cruise: true ] +[Elevator: 0.004158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1157.392090] [T/O: false ][Cruise: true ] +[Elevator: -0.005842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1161.715332] [T/O: false ][Cruise: true ] +[Elevator: -0.015842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1166.377563] [T/O: false ][Cruise: true ] +[Elevator: -0.025842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1170.426514] [T/O: false ][Cruise: true ] +[Elevator: -0.035842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1174.654663] [T/O: false ][Cruise: true ] +[Elevator: -0.045842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1178.664673] [T/O: false ][Cruise: true ] +[Elevator: -0.055842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1182.339233] [T/O: false ][Cruise: true ] +[Elevator: -0.065842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1185.529907] [T/O: false ][Cruise: true ] +[Elevator: -0.075842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1189.017212] [T/O: false ][Cruise: true ] +[Elevator: -0.085842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1192.058960] [T/O: false ][Cruise: true ] +[Elevator: -0.095842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1195.637695] [T/O: false ][Cruise: true ] +[Elevator: -0.105842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1198.081787] [T/O: false ][Cruise: true ] +[Elevator: -0.115842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1200.040283] [T/O: false ][Cruise: true ] +[Elevator: -0.125842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1201.975342] [T/O: false ][Cruise: true ] +[Elevator: -0.135842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1203.738159] [T/O: false ][Cruise: true ] +[Elevator: -0.145842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1205.272095] [T/O: false ][Cruise: true ] +[Elevator: -0.155842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1206.682129] [T/O: false ][Cruise: true ] +[Elevator: -0.165842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1207.919800] [T/O: false ][Cruise: true ] +[Elevator: -0.175842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1208.915527] [T/O: false ][Cruise: true ] +[Elevator: -0.185842] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1209.888916] [T/O: false ][Cruise: true ] +[Elevator: -0.195842] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1210.602417] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.117065] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.401489] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.492676] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.344604] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1211.018433] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1210.474609] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1209.760254] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1208.895508] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1207.731567] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1206.165894] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1204.628662] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1202.032837] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1199.816040] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1197.734863] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1195.290894] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1192.878662] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1190.281982] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1187.725342] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1185.046387] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1181.798218] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1178.241333] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1174.208496] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1170.316650] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1166.706177] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1162.415894] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1156.767090] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1151.277832] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1145.405273] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1139.497314] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1133.729614] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1127.842773] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1122.707886] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1117.303955] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1111.948975] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1106.590820] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1100.856323] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1094.724121] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1089.316528] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1083.569702] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1077.298950] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1070.759155] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1064.571167] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1057.324341] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1049.683594] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1042.625366] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1035.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1027.450562] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1019.599670] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1011.222717] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1003.149353] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 995.147949] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 985.481689] [T/O: false ][Cruise: true ] +[Elevator: -0.195842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 977.268372] [T/O: false ][Cruise: true ] +[Elevator: -0.185842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 966.305481] [T/O: false ][Cruise: true ] +[Elevator: -0.175842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 956.062927] [T/O: false ][Cruise: true ] +[Elevator: -0.165842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 945.289734] [T/O: false ][Cruise: true ] +[Elevator: -0.155842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 934.712769] [T/O: false ][Cruise: true ] +[Elevator: -0.145842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 924.111328] [T/O: false ][Cruise: true ] +[Elevator: -0.135842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 914.341064] [T/O: false ][Cruise: true ] +[Elevator: -0.125842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 903.967957] [T/O: false ][Cruise: true ] +[Elevator: -0.115842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 893.632507] [T/O: false ][Cruise: true ] +[Elevator: -0.105842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 883.240234] [T/O: false ][Cruise: true ] +[Elevator: -0.095842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 873.316589] [T/O: false ][Cruise: true ] +[Elevator: -0.085842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 861.387207] [T/O: false ][Cruise: true ] +[Elevator: -0.075842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 850.530579] [T/O: false ][Cruise: true ] +[Elevator: -0.065842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 840.212097] [T/O: false ][Cruise: true ] +[Elevator: -0.055842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 829.599915] [T/O: false ][Cruise: true ] +[Elevator: -0.045842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 819.537781] [T/O: false ][Cruise: true ] +[Elevator: -0.035842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 809.463867] [T/O: false ][Cruise: true ] +[Elevator: -0.025842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 799.221130] [T/O: false ][Cruise: true ] +[Elevator: -0.015842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 789.532043] [T/O: false ][Cruise: true ] +[Elevator: -0.005842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 779.877686] [T/O: false ][Cruise: true ] +[Elevator: 0.004158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 770.397949] [T/O: false ][Cruise: true ] +[Elevator: 0.014158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 760.379517] [T/O: false ][Cruise: true ] +[Elevator: 0.024158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 748.781433] [T/O: false ][Cruise: true ] +[Elevator: 0.034158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 736.092224] [T/O: false ][Cruise: true ] +[Elevator: 0.044158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 722.398865] [T/O: false ][Cruise: true ] +[Elevator: 0.054158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 708.201050] [T/O: false ][Cruise: true ] +[Elevator: 0.064158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 695.482056] [T/O: false ][Cruise: true ] +[Elevator: 0.074158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 682.730530] [T/O: false ][Cruise: true ] +[Elevator: 0.084158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 669.825500] [T/O: false ][Cruise: true ] +[Elevator: 0.094158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 656.953979] [T/O: false ][Cruise: true ] +[Elevator: 0.104158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 644.068115] [T/O: false ][Cruise: true ] +[Elevator: 0.114158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 630.760010] [T/O: false ][Cruise: true ] +[Elevator: 0.124158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 617.209534] [T/O: false ][Cruise: true ] +[Elevator: 0.134158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 605.946716] [T/O: false ][Cruise: true ] +[Elevator: 0.144158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 594.443420] [T/O: false ][Cruise: true ] +[Elevator: 0.154158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 583.883789] [T/O: false ][Cruise: true ] +[Elevator: 0.164158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 573.816650] [T/O: false ][Cruise: true ] +[Elevator: 0.174158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 563.038635] [T/O: false ][Cruise: true ] +[Elevator: 0.184158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 551.695679] [T/O: false ][Cruise: true ] +[Elevator: 0.194158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 541.320679] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 531.557739] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 522.351685] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 513.559875] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 504.818726] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 496.103302] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 487.955322] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 480.580719] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 473.286865] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 466.504608] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 459.784882] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 453.333130] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 447.297577] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 441.924896] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 436.852386] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 432.408478] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 428.227905] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 424.699890] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 421.487671] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 418.696899] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 416.389252] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 414.507813] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 413.155457] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 412.139648] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 411.599640] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 411.517731] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 411.890808] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 412.700378] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 413.912170] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 415.490997] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 417.517395] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 419.755920] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 422.448853] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 425.711151] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 429.258667] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 433.290344] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 437.389771] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 441.928253] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 447.027252] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 452.343445] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 458.009399] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 464.595306] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 470.737030] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 477.829498] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 484.453217] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 491.350250] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 498.152527] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 505.369965] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 512.244995] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 519.328918] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 526.592834] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 533.269775] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 540.204346] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 547.079773] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 554.173889] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 561.080444] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 568.303650] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 575.612244] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 583.364746] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 590.382263] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 597.568909] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 605.579346] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 612.491455] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 620.335144] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 627.585938] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 636.222412] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 646.170593] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 656.175354] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 666.259705] [T/O: false ][Cruise: true ] +[Elevator: 0.194158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 675.763733] [T/O: false ][Cruise: true ] +[Elevator: 0.184158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 683.830017] [T/O: false ][Cruise: true ] +[Elevator: 0.174158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 691.373291] [T/O: false ][Cruise: true ] +[Elevator: 0.164158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 698.563477] [T/O: false ][Cruise: true ] +[Elevator: 0.154158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 706.220581] [T/O: false ][Cruise: true ] +[Elevator: 0.144158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 713.514465] [T/O: false ][Cruise: true ] +[Elevator: 0.134158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 723.431091] [T/O: false ][Cruise: true ] +[Elevator: 0.124158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 730.741150] [T/O: false ][Cruise: true ] +[Elevator: 0.114158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 737.736572] [T/O: false ][Cruise: true ] +[Elevator: 0.104158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 744.579529] [T/O: false ][Cruise: true ] +[Elevator: 0.094158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 751.107727] [T/O: false ][Cruise: true ] +[Elevator: 0.084158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 757.572632] [T/O: false ][Cruise: true ] +[Elevator: 0.074158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 763.523865] [T/O: false ][Cruise: true ] +[Elevator: 0.064158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 769.101624] [T/O: false ][Cruise: true ] +[Elevator: 0.054158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 775.288635] [T/O: false ][Cruise: true ] +[Elevator: 0.044158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 780.907288] [T/O: false ][Cruise: true ] +[Elevator: 0.034158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 786.640564] [T/O: false ][Cruise: true ] +[Elevator: 0.024158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 791.786377] [T/O: false ][Cruise: true ] +[Elevator: 0.014158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 797.291260] [T/O: false ][Cruise: true ] +[Elevator: 0.004158] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 802.403870] [T/O: false ][Cruise: true ] +[Elevator: -0.005842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 808.343323] [T/O: false ][Cruise: true ] +[Elevator: -0.015842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 814.818604] [T/O: false ][Cruise: true ] +[Elevator: -0.025842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 819.823425] [T/O: false ][Cruise: true ] +[Elevator: -0.035842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 824.402954] [T/O: false ][Cruise: true ] +[Elevator: -0.045842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 828.928833] [T/O: false ][Cruise: true ] +[Elevator: -0.055842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 833.293030] [T/O: false ][Cruise: true ] +[Elevator: -0.065842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 838.032959] [T/O: false ][Cruise: true ] +[Elevator: -0.075842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 841.883179] [T/O: false ][Cruise: true ] +[Elevator: -0.085842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 845.927979] [T/O: false ][Cruise: true ] +[Elevator: -0.095842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 849.543701] [T/O: false ][Cruise: true ] +[Elevator: -0.105842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 853.175171] [T/O: false ][Cruise: true ] +[Elevator: -0.115842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 857.260803] [T/O: false ][Cruise: true ] +[Elevator: -0.125842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 860.507080] [T/O: false ][Cruise: true ] +[Elevator: -0.135842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 863.199646] [T/O: false ][Cruise: true ] +[Elevator: -0.145842] [Roll: 0.152485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 865.534424] [T/O: false ][Cruise: true ] +[Elevator: -0.155842] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 867.810608] [T/O: false ][Cruise: true ] +[Elevator: -0.165842] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 869.856689] [T/O: false ][Cruise: true ] +[Elevator: -0.175842] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 871.669556] [T/O: false ][Cruise: true ] +[Elevator: -0.185842] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 873.167114] [T/O: false ][Cruise: true ] +[Elevator: -0.195842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 874.432678] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 875.428284] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 876.169128] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 876.685913] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 877.003784] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 877.094543] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 876.879395] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 876.375977] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 875.700623] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 874.826477] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 873.715576] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 872.055603] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 870.309570] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 868.445496] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 866.526062] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 864.599243] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 861.949402] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 859.109497] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 856.608948] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 853.786377] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 850.974915] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 848.100586] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 844.820129] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 841.484009] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 837.755676] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 834.211182] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 830.520203] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 826.165344] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 821.860168] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 817.065125] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 812.102295] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 807.389160] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 802.276428] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 796.753418] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 790.861694] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 785.464172] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 779.559570] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 773.823181] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 767.194397] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 760.977905] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 754.623840] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 745.262451] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 738.124023] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 730.434143] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 722.980591] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 714.644287] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 704.967773] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 696.055420] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 687.377747] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 677.787781] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 668.648071] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 660.122070] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.142485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 651.116028] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.132485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 640.955872] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.122485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 630.987244] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.112485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 620.039429] [T/O: false ][Cruise: true ] +[Elevator: -0.205842] [Roll: 0.102485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 608.875305] [T/O: false ][Cruise: true ] +[Elevator: -0.195842] [Roll: 0.092485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 599.153870] [T/O: false ][Cruise: true ] +[Elevator: -0.185842] [Roll: 0.082485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 588.812988] [T/O: false ][Cruise: true ] +[Elevator: -0.175842] [Roll: 0.072485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 577.925232] [T/O: false ][Cruise: true ] +[Elevator: -0.165842] [Roll: 0.062485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 563.646118] [T/O: false ][Cruise: true ] +[Elevator: -0.155842] [Roll: 0.052485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 551.010071] [T/O: false ][Cruise: true ] +[Elevator: -0.145842] [Roll: 0.042485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 539.397400] [T/O: false ][Cruise: true ] +[Elevator: -0.135842] [Roll: 0.032485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 528.485962] [T/O: false ][Cruise: true ] +[Elevator: -0.125842] [Roll: 0.022485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 517.375366] [T/O: false ][Cruise: true ] +[Elevator: -0.115842] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 504.439453] [T/O: false ][Cruise: true ] +[Elevator: -0.105842] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 490.237518] [T/O: false ][Cruise: true ] +[Elevator: -0.095842] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 477.912231] [T/O: false ][Cruise: true ] +[Elevator: -0.085842] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 467.103027] [T/O: false ][Cruise: true ] +[Elevator: -0.075842] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 455.894257] [T/O: false ][Cruise: true ] +[Elevator: -0.065842] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 444.786804] [T/O: false ][Cruise: true ] +[Elevator: -0.055842] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 432.974121] [T/O: false ][Cruise: true ] +[Elevator: -0.045842] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 421.192230] [T/O: false ][Cruise: true ] +[Elevator: -0.035842] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 406.779205] [T/O: false ][Cruise: true ] +[Elevator: -0.025842] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 392.427368] [T/O: false ][Cruise: true ] +[Elevator: -0.015842] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 379.120361] [T/O: false ][Cruise: true ] +[Elevator: -0.005842] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 365.715363] [T/O: false ][Cruise: true ] +[Elevator: 0.004158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 351.543030] [T/O: false ][Cruise: true ] +[Elevator: 0.014158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 336.899658] [T/O: false ][Cruise: true ] +[Elevator: 0.024158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 322.310577] [T/O: false ][Cruise: true ] +[Elevator: 0.034158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 308.964172] [T/O: false ][Cruise: true ] +[Elevator: 0.044158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 294.980682] [T/O: false ][Cruise: true ] +[Elevator: 0.054158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 279.963623] [T/O: false ][Cruise: true ] +[Elevator: 0.064158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 267.689880] [T/O: false ][Cruise: true ] +[Elevator: 0.074158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 253.918518] [T/O: false ][Cruise: true ] +[Elevator: 0.084158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 240.900162] [T/O: false ][Cruise: true ] +[Elevator: 0.094158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 227.546219] [T/O: false ][Cruise: true ] +[Elevator: 0.104158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 215.753006] [T/O: false ][Cruise: true ] +[Elevator: 0.114158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 202.977417] [T/O: false ][Cruise: true ] +[Elevator: 0.124158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 189.455048] [T/O: false ][Cruise: true ] +[Elevator: 0.134158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 174.778168] [T/O: false ][Cruise: true ] +[Elevator: 0.144158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.154158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.164158] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.174158] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.184158] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.194158] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.077515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.087515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.097515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.107515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.117515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.127515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.137515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.147515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: false ][Cruise: true ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.002497] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.032497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.062497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.092497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.122497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.152497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.182497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.212497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.242497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.272497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.302497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.332497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.362497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.392497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.422497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.452497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.482497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.204158] [Roll: -0.157515] [Yaw: 0.512497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.051910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2028.199829] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2023.722534] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2019.945068] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2016.102661] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2011.715576] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2007.942139] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 2003.869385] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1999.890503] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1995.930664] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1991.753418] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1987.500488] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.379761] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.182251] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1975.283325] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1970.965820] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1967.336426] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1963.067383] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1958.997681] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1954.936646] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1950.306763] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1945.331665] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1941.686401] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1938.059937] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1934.653687] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1930.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1926.738647] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1922.862793] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1919.322754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1915.387817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1912.026489] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1908.824585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1905.712769] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1902.877441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1900.310181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1897.590332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1895.376709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1893.082520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1891.168213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1889.257080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1887.643066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1886.257202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1884.944458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1883.732300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1882.673828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.850708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.176636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1880.777588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1880.551025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1880.535400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1880.709717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.098877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.713623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1882.437256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1883.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1884.359375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1885.425171] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1886.658691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1888.049316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1889.516113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1890.986938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1892.611816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1894.270508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1896.254639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1898.161499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1900.361450] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1902.531494] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1904.852173] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1907.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1909.808228] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1912.526978] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1915.321411] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1918.150146] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1920.955078] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1923.852173] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1926.663574] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1929.355225] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1932.172485] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1935.002197] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1937.945190] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1940.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1943.822021] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1946.651367] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1949.302124] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1951.921143] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1954.507935] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1957.468018] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1960.239380] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1962.991699] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1965.472168] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1967.954956] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1970.377075] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1972.369141] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1974.515137] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1976.662842] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1978.362061] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.840332] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1981.220581] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1982.441772] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.545776] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.577271] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1985.386475] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1986.103149] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1986.673706] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1987.040649] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1987.226196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1987.252197] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1987.113647] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1986.804565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1986.304077] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1985.651245] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1984.854736] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1983.845093] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1982.707642] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1981.204834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1979.586426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1977.812988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1975.825928] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1973.802246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1971.413940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1968.906982] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1966.206421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1963.425903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1960.025146] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1956.801880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1952.114258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1947.684326] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1943.780029] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1939.280151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1935.276855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1930.513672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1925.645874] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1920.428589] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1915.072876] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1909.136230] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1903.489136] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1897.923706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1892.445801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1887.408691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1881.361572] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1874.568848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1867.815430] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1860.722412] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1854.236694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1847.452881] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1840.507202] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1834.153320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1827.558960] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1820.898071] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1812.798706] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1805.684814] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1798.588379] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1790.514282] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1781.717651] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1773.808716] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1765.591553] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1756.981445] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1747.712891] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1739.362427] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1731.205811] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1722.819092] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1713.933960] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1705.552002] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1695.861938] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1686.498901] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1677.746704] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1668.360107] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1658.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1648.955811] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1638.624146] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1627.871704] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1618.342041] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1608.244995] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1597.923706] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1586.724976] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1577.239014] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1567.865967] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1558.328613] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1549.270996] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1540.082275] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1530.750122] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1520.743896] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1513.010376] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1505.106323] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1496.822144] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1488.982544] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1482.194458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1475.390259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1468.582397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1462.319336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1456.449097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1450.217041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1444.514282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1439.323853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1434.570679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1430.461304] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1426.854370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1423.419922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1420.497437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1418.093750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1415.904907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1414.278931] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1413.029175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1412.240112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1411.914307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1412.015381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1412.539795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1413.432495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1414.675781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1416.288940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1418.280518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1420.839233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1423.768799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1426.744629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1430.607422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1434.361572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1438.427979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1443.421875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1448.162964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1453.823486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1459.391724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1465.638428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1471.590332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1477.465088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1483.910400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1490.531494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1498.007324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1504.557373] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1512.041504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1519.512451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1526.478760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1533.809448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1541.183594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1547.982056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1554.818237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1561.153687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1568.171387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1574.335938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1580.813965] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1587.993164] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1594.772705] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1601.485352] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1608.105835] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1614.960938] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1621.306641] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1627.552124] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1633.785645] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1639.963745] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1646.605957] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1652.533691] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1658.026489] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1663.970215] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1669.237061] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1675.077393] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1680.857910] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1686.687378] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1692.311157] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1698.002319] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1704.000122] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1710.114990] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1715.149292] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1720.397583] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1724.903198] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1729.390991] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1733.930542] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1737.657349] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1741.330078] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1744.894775] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1748.066040] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1750.973511] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1753.708252] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1756.336548] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1758.568481] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1760.545410] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1762.241333] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1763.821655] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1765.065918] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1766.037842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1766.764526] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1767.269775] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1767.528076] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1767.531494] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1767.312012] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1766.857422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1766.164917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1765.166626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1763.984985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1762.757446] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1761.242188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1759.500488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1757.594971] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1755.312988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1753.182617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1750.787354] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1747.975586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1745.157715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1742.225220] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1739.087402] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1735.835205] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1732.216309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1728.662476] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1725.084595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1721.104614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1717.112671] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1712.729126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1708.383789] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1703.412964] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1698.476929] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1693.509766] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1688.690674] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1682.567505] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1676.715820] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1670.889404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1664.987671] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1657.887939] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1651.477417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1644.232910] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1636.984497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1629.132324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1621.979004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1614.498901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1606.593994] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 1598.009644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.500000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.190000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.190000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.180000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.180000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.170000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.170000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.160000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.160000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.150000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.150000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: -0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: -0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: -0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: -0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: -0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: -0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: -0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.850433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11375.847656] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11369.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11364.008789] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11358.828125] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11353.976563] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11349.091797] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11344.325195] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11339.314453] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11334.581055] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11330.419922] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11326.477539] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11322.349609] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11316.884766] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11312.935547] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11309.635742] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11306.543945] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11303.937500] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11301.542969] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11298.031250] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11295.672852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11293.807617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11292.079102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11290.634766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11289.667969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11288.978516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11288.567383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11288.366211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11288.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11288.625000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11289.171875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11289.910156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11290.906250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11292.123047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11293.625000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11295.266602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11297.144531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11299.073242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11301.256836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11303.565430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11306.122070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11308.951172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11311.854492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11315.002930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11318.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11321.757813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11325.417969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11329.190430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11333.197266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11337.000000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11341.484375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11345.927734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11350.171875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11354.713867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11359.277344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11364.220703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11368.807617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11373.467773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11378.485352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11383.897461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11389.140625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11394.521484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11399.566406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11404.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11410.039063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11415.553711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11420.546875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11426.135742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11431.833008] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11437.663086] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11444.076172] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11450.319336] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11456.410156] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11462.180664] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11467.653320] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11473.240234] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11478.799805] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11484.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11489.340820] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11494.780273] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11500.083984] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11505.663086] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11511.244141] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11516.897461] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11522.244141] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11527.107422] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11532.603516] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11538.025391] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11543.456055] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11548.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11553.362305] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11558.016602] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11562.663086] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11568.945313] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11574.518555] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11579.302734] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11583.925781] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11588.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11592.807617] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11597.016602] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11601.055664] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11604.660156] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11608.729492] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11612.377930] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11615.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11618.166992] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11620.750977] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11622.932617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11625.144531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11627.058594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11628.874023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11630.696289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11632.247070] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11633.617188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11634.821289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11635.746094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11636.541016] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11637.193359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11637.553711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11637.682617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11637.616211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11637.358398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11636.858398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11636.120117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11635.061523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11633.788086] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11632.356445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11630.808594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11628.911133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11626.664063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11624.173828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11621.393555] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11618.420898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11614.941406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11611.276367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11607.169922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11602.821289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11598.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11593.386719] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11588.481445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11582.958008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11577.226563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11570.924805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11564.422852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11557.623047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11550.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11544.159180] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11536.987305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11529.102539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11520.722656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11512.051758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11503.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11494.107422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11484.915039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11475.335938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11465.597656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11455.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11444.609375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11433.171875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11421.694336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11410.149414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11397.008789] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11385.710938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11374.429688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11362.838867] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11350.688477] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11338.235352] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11325.588867] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11312.472656] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11298.694336] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11284.212891] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11270.030273] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11254.724609] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11240.156250] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11224.661133] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11210.405273] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11195.950195] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11181.301758] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11166.469727] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11151.004883] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11135.920898] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11121.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11105.625977] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11091.076172] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11076.035156] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11058.001953] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11042.140625] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11025.466797] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11008.868164] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10994.094727] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10978.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10964.524414] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10949.092773] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10936.030273] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10922.094727] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10908.504883] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10895.510742] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10881.079102] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10867.930664] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10853.467773] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10841.370117] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10828.771484] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10816.616211] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10803.361328] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10791.908203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10780.333008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10770.246094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10760.692383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10751.034180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10741.846680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10731.865234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10723.550781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10715.208008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10708.450195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10701.331055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10695.539063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10689.159180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10683.228516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10678.874023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10674.184570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10670.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10666.640625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10663.539063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10661.086914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10658.838867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10657.062500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10655.773438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10654.898438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10654.556641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10654.599609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10655.027344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10655.805664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10657.128906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10658.691406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10660.479492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10662.640625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10665.169922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10668.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10671.598633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10674.967773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10679.016602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10683.619141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10688.205078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10693.214844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10698.513672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10704.232422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10710.195313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10716.572266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10723.158203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10730.333008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10737.099609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10879.079102] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10888.356445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10896.648438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10904.654297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10912.431641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10919.863281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10927.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10933.923828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10941.492188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10949.041992] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10956.903320] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10965.005859] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10973.241211] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10981.533203] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10989.128906] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10996.952148] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11003.965820] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11010.564453] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11017.488281] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11023.988281] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11032.076172] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11040.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11047.323242] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11054.141602] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11060.619141] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11066.924805] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11073.647461] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11080.791016] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11086.280273] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11091.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11097.210938] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11102.627930] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11108.336914] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11115.241211] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11121.032227] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11126.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11132.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11137.257813] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11142.290039] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11147.684570] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11152.437500] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11157.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11161.963867] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11166.565430] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11170.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11174.926758] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11178.963867] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11182.633789] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11186.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11189.685547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11192.980469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11196.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11199.225586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11202.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11204.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11206.785156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11208.969727] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11210.975586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11212.854492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11214.546875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11215.985352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11217.300781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11218.417969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11219.277344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11219.960938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.465820] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.737305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.781250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.610352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.194336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11219.561523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11218.673828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11217.547852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11216.198242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11214.554688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11212.265625] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11209.473633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11206.289063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11202.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11199.355469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11195.438477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11191.127930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11186.200195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11180.800781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11174.317383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11167.953125] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11160.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11154.414063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11147.155273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11139.723633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11131.599609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11123.234375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11113.531250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11104.998047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11095.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11085.345703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11074.542969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11061.321289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11048.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11036.047852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11022.118164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11007.707031] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10993.621094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10981.548828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10969.827148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10955.637695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10941.280273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10928.012695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10914.991211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10901.516602] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10887.059570] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10872.462891] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10857.199219] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10841.471680] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10826.099609] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10810.655273] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10795.213867] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10778.739258] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10762.215820] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10745.109375] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10728.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10711.890625] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10695.079102] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10678.365234] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10661.836914] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10644.394531] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10626.515625] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10608.785156] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10591.121094] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10573.503906] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10555.310547] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10537.191406] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10519.081055] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10500.096680] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10481.566406] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10462.751953] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10446.171875] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10428.897461] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10410.755859] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10393.680664] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10375.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10359.483398] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10341.919922] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10324.736328] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10307.632813] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10292.113281] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10276.381836] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10260.190430] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10245.467773] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10231.306641] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10215.677734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10201.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10186.624023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10173.357422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10160.710938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10148.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10137.095703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10125.908203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10115.068359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10103.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10094.220703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10084.578125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10075.368164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10066.797852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10058.887695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10051.474609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10044.722656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10038.786133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10033.023438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10027.782227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10023.598633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10019.592773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10016.053711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10013.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10010.735352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10008.876953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10007.396484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10006.532227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10006.121094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10006.150391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10006.629883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10007.562500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10008.910156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10010.666992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10012.949219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10015.803711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10018.861328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10022.362305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10028.143555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10033.358398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10038.026367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10043.538086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10049.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10055.809570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10062.217773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10069.282227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10076.691406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10084.529297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10094.303711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10105.373047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10114.692383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10123.342773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10131.768555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10139.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10147.437500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10155.076172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10164.226563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10172.830078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10181.068359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10190.060547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10198.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10207.435547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10216.027344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10224.833008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10233.182617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10241.782227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10250.300781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10258.518555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10267.448242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10275.586914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10286.273438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10296.831055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10307.150391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10318.560547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10327.122070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10336.434570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10344.801758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10353.068359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10361.536133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10370.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10378.805664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10386.999023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10394.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10403.090820] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10412.165039] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10420.375000] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10428.274414] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10435.929688] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10443.658203] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10452.009766] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10459.717773] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10467.200195] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10474.916992] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10482.907227] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10490.625000] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10498.558594] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10505.833008] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10513.181641] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10519.968750] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10526.734375] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10533.458008] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10539.986328] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10546.403320] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10552.523438] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10558.681641] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10564.691406] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10570.351563] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10576.098633] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10581.589844] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10587.317383] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10592.640625] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10597.922852] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10603.058594] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10608.421875] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10613.292969] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10618.193359] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10622.643555] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10627.014648] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10631.226563] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10635.305664] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10639.482422] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10643.100586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10646.880859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10650.771484] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10654.009766] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10657.363281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10660.653320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10664.702148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10668.480469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10671.714844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10674.811523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10677.416992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10679.513672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10681.205078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10682.672852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10683.923828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10684.816406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10685.374023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10685.613281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10685.562500] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10685.177734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10684.416992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10683.498047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10682.297852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10680.873047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10678.533203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10676.115234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10673.782227] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10671.028320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10667.627930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10663.522461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10659.628906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10655.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10650.587891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10645.602539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10640.599609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10634.599609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10627.746094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10621.281250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10614.708008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10607.537109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10600.394531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10592.752930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10584.393555] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10575.093750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10565.674805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10556.462891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10545.916016] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10535.650391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10525.054688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10513.928711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10502.517578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10489.845703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10478.229492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10464.870117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10451.075195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10436.200195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10422.563477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10407.329102] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10393.227539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10376.912109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10361.560547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10346.064453] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10330.353516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10313.541992] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10297.234375] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10280.313477] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10262.867188] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10244.901367] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10225.972656] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10207.824219] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10188.224609] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10169.676758] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10151.398438] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10131.371094] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10111.511719] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10091.004883] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10072.130859] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10054.430664] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10032.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10013.557617] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9992.488281] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9970.253906] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9948.857422] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9928.422852] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9906.412109] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9882.835938] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9862.559570] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9841.679688] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9820.918945] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9796.866211] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9775.547852] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9754.067383] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9732.201172] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9710.690430] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9689.787109] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9668.087891] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9647.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9628.371094] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9607.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9588.782227] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9568.710938] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9550.958984] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9532.361328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9513.893555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9496.383789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9479.926758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9462.830078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9447.113281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9432.984375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9417.838867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9404.914063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9392.237305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9380.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9368.854492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9357.917969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9349.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9340.106445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9331.455078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9323.718750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9316.919922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9310.352539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9304.451172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9298.900391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9294.407227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9290.457031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9287.452148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9285.275391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9283.416992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9282.275391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9281.767578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9281.869141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9282.503906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9283.718750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9285.484375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9287.719727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9290.415039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9293.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9297.306641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9301.156250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9305.758789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9310.832031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9316.349609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9322.643555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9329.768555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9336.844727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9344.061523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9351.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9359.668945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9367.824219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9375.461914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9382.944336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9390.699219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9398.574219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9406.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9415.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9423.680664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9432.699219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9441.682617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9450.947266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9460.189453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9469.421875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9478.688477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9488.497070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9497.795898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9507.250977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9516.791016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9526.422852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9536.703125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9546.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9556.415039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9566.593750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9577.497070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9588.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9598.496094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9608.584961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9619.496094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9629.740234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9639.724609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9649.741211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9660.131836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9669.946289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9680.524414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9690.751953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9700.185547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9709.344727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9719.103516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9728.976563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9738.832031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9748.718750] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9763.984375] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9774.970703] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9785.729492] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9795.193359] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9805.666016] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9815.987305] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9825.737305] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9834.927734] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9844.356445] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9853.261719] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9864.180664] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9873.851563] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9882.206055] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9890.174805] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9898.311523] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9906.422852] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9913.958984] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9921.519531] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9928.113281] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9935.195313] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9941.809570] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9948.134766] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9954.660156] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9960.722656] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9966.368164] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9972.172852] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9978.374023] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9983.343750] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9988.410156] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9993.089844] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9997.796875] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10002.731445] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10006.748047] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10010.544922] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10014.462891] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10018.502930] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10023.748047] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10027.213867] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10030.857422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10033.832031] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10036.698242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10039.277344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10041.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10043.103516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10044.583008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10046.119141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10047.220703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10048.454102] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10048.430664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10048.026367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10047.446289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10046.650391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10045.417969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10043.775391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10041.850586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10039.668945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10037.179688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10034.868164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10032.034180] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10028.879883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10025.612305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10021.675781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10018.230469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10014.053711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10008.911133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10003.151367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9997.525391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9991.144531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9985.456055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9979.024414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9972.946289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9966.287109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9959.147461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9950.977539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9942.672852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9934.153320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9925.319336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9915.401367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9905.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9893.970703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9882.569336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9872.008789] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9860.388672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9849.367188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9836.503906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9823.371094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9810.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9796.737305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9783.276367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9767.926758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9752.211914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9737.964844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9724.199219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9709.338867] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9693.011719] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9676.028320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9660.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9644.858398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9628.937500] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9612.484375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9593.005859] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9574.782227] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9555.725586] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9536.626953] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9517.732422] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9497.932617] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9478.478516] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9457.495117] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9437.091797] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9415.406250] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9394.391602] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9373.003906] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9351.851563] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9328.593750] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9306.506836] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9285.326172] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9261.490234] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9238.380859] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9215.616211] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9193.411133] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9169.964844] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9146.589844] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9120.354492] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9097.269531] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9071.855469] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9045.430664] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9017.473633] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8989.491211] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8964.450195] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8939.261719] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8914.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8889.465820] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8864.488281] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8842.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8820.194336] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8796.929688] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8773.812500] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8751.510742] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8730.469727] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8708.441406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8687.234375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8667.144531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8648.563477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8629.420898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8611.103516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8592.881836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8575.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8559.046875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8542.700195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8527.603516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8512.447266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8499.778320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8486.800781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8473.923828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8460.593750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8450.046875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8438.384766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8428.068359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8419.114258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8410.514648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8402.463867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8394.955078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8389.488281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8384.931641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8381.434570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8379.091797] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8377.415039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8376.560547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8376.472656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8377.142578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8378.428711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8380.251953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8382.679688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8385.617188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8389.475586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8393.913086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8398.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8404.064453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8410.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8417.008789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8423.968750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8431.288086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8438.732422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8446.777344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8455.162109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8463.713867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8471.486328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8480.130859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8488.572266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8497.361328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8506.548828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8515.633789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8524.589844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8534.180664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8543.674805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8553.509766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8563.419922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8573.522461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8583.665039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8594.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8604.823242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8615.086914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8624.980469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8635.209961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8645.844727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8656.146484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8667.092773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8677.853516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8688.986328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8699.252930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8710.578125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8721.528320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8732.628906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8742.774414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8753.402344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8764.310547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8774.839844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8785.758789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8796.096680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8806.781250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8817.429688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8827.598633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8838.060547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8848.530273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8858.971680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8868.890625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8878.833008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8888.741211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8898.873047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8908.951172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8918.812500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8928.750977] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8938.190430] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8947.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8956.635742] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8965.124023] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8974.711914] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8983.487305] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8993.295898] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9002.026367] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9010.526367] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9018.670898] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9026.759766] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9034.876953] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9043.546875] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9051.770508] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9059.771484] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9067.344727] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9074.979492] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9082.479492] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9089.435547] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9096.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9102.916016] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9109.875977] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9116.154297] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9122.327148] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9128.945313] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9134.526367] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9140.223633] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9145.562500] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9151.407227] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9156.371094] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9161.347656] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9166.106445] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9170.778320] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9175.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9179.659180] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9183.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9187.882813] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9191.965820] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9195.580078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9198.920898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9202.139648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9205.224609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9208.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9210.786133] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9213.223633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9218.654297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9221.293945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9223.547852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9225.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9226.833008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9228.132813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9228.994141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9229.635742] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9230.077148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9230.274414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9230.243164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9229.894531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9229.231445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9228.345703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9227.353516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9226.169922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9224.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9223.173828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9221.514648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9219.677734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9217.315430] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9214.857422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9212.375977] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9209.629883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9206.604492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9203.553711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9200.342773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9196.981445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9192.883789] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9188.743164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9184.348633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9179.988281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9175.583008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9170.659180] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9164.857422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9158.456055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9151.639648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9143.283203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9134.664063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9125.611328] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9115.317383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9105.632813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9094.966797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9080.235352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9068.156250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9057.236328] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9045.667969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9033.868164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9021.589844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9007.426758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8992.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8978.971680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8964.746094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8950.805664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8937.256836] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8919.471680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8903.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8889.539063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8876.195313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8860.231445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8844.246094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8830.378906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8817.731445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8804.626953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8791.059570] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8777.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8764.380859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8750.295898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8735.134766] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8721.229492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8704.887695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8689.272461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8666.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8649.202148] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8630.530273] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8612.622070] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8594.766602] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8577.356445] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8559.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8541.728516] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8521.641602] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8503.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8483.266602] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8459.403320] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8437.781250] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8416.647461] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8394.571289] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8372.736328] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8348.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8325.291992] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8302.319336] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8277.932617] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8254.892578] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8230.732422] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8203.701172] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8173.814453] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8147.810547] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8121.155762] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8094.161133] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8065.083496] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8036.112793] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8009.749512] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7978.861328] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7950.039551] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7922.130371] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7894.495605] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7865.792969] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7834.866699] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7808.304199] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7781.576660] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7751.243652] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7722.327148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7695.828613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7672.283203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7648.236816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7622.016113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7599.141113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7577.026367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7555.850098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7537.255371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7517.741211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7500.218750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7484.421387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7469.294922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7452.766602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7439.770996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7427.249023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7417.520508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7408.741699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7401.166992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7395.032227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7390.212891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7386.927246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7384.840820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7383.866211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7383.937988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7385.284180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7387.538574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7390.879883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7395.242188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7401.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7407.903320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7415.246582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7422.970215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7431.257813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7439.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7448.349121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7456.924805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7465.082031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7473.535645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7482.256836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7491.415527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7501.249512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7510.771484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7520.920898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7530.630859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7541.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7552.085449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7562.081543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7572.046387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7582.672363] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7593.301758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7605.226074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7618.266602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7629.771973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7641.482422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7653.301758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7664.444336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7675.762695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7687.375488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7698.961426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7709.745117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7721.780762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7732.997070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7744.088867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7755.677246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7767.250488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7779.390137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7790.658691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7801.220703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7812.685059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7823.931641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7835.436035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7847.402832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7858.841797] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7869.671875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7880.490234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7890.997070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7901.284668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7912.122070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7922.560059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7932.977051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7942.915039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7953.142578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7963.701172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7974.263184] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7984.064941] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7994.384766] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8003.446777] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8012.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8022.245117] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8031.543945] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8040.239258] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8054.108398] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8064.696777] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8074.481934] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8083.895020] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8093.163086] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8102.590332] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8111.366699] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8120.061523] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8128.274902] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8136.529297] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8144.264160] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8154.206055] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8160.970703] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8167.788574] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8174.319824] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8180.119629] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8185.612793] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8190.881348] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8197.768555] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8203.017578] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8207.742188] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8212.724609] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8217.505859] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8222.824219] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8227.924805] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8231.945313] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8235.812500] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8239.917969] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8243.228516] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8246.375977] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8249.144531] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8251.756836] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8254.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8256.330078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8258.827148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8260.652344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8262.491211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8263.845703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8265.081055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8266.251953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8267.200195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8267.918945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8268.446289] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8268.714844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8268.776367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8268.606445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8268.209961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8267.579102] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8266.718750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8265.677734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8264.369141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8262.929688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8261.305664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8259.473633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8257.488281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8255.345703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8252.747070] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8249.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8246.824219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8243.850586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8240.662109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8237.307617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8233.177734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8229.513672] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8225.811523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8221.632813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8216.847656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8211.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8204.224609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8195.818359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8188.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8178.740234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8169.587402] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8160.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8151.083496] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8140.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8130.669434] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8116.583984] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8105.521973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8094.018555] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8082.771973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8070.969727] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8058.525391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8046.051270] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8033.103516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8019.289551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8005.731445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7993.202148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7978.350098] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7964.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7950.249023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7935.972168] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7921.203613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7894.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7867.284668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7849.964355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7834.210938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7817.317383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7800.360352] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7783.226074] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7765.034668] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7746.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7728.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7708.334473] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7688.894531] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7669.133789] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7649.413574] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7626.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7605.922852] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7585.353516] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7564.162598] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7541.391113] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7518.673340] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7498.010742] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7474.813477] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7450.052246] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7427.462402] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7403.856445] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7381.273438] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7359.126953] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7326.559082] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7303.588867] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7280.318848] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7257.219727] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7233.791016] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7208.324707] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7184.601563] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7159.245117] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7133.029785] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7108.196289] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7083.590332] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7062.396973] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7039.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7017.738281] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6995.064941] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6975.251465] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6958.170898] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6939.120117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6919.932617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6904.399414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6889.710938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6874.669922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6862.124512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6852.377930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6844.709961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6838.060547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6832.709473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6829.007324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6826.753418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6825.746582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6825.899414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6827.115723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6829.449707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6832.583984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6836.445313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6840.636719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6845.645020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6851.454590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6858.076660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6865.619141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6873.725586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6882.363281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6891.596680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6899.505859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6908.549805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6918.314941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6926.848633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6936.041992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6945.367188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6954.554199] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6963.106934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6971.843750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6994.881836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7005.918945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7016.948242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7028.020020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7038.421387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7049.179688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7059.911133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7070.364258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7081.409668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7090.790527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7102.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7114.061523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7124.890625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7135.851563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7145.975586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7155.668945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7165.839844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7176.028320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7185.736328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7195.413086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7205.438477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7215.164551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7224.946289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7234.634766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7244.753418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7255.298340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7264.249023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7273.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7284.173828] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7294.193848] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7304.063965] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7313.914063] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7323.123535] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7332.333984] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7341.063965] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7349.161621] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7358.240234] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7366.150391] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7374.094727] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7381.664551] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7390.304199] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7398.128906] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7406.085449] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7413.635254] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7422.273926] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7429.001953] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7436.222656] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7442.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7449.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7457.058105] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7464.437988] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7470.948242] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7476.656250] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7482.120605] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7487.480957] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7492.081543] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7496.829102] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7501.670898] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7505.969727] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7510.308105] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7514.424316] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7518.166016] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7521.746582] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7525.151367] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7528.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7531.341309] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7534.035645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7536.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7538.883301] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7541.332520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7543.465332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7545.252441] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7546.860352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7548.224121] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7549.321777] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7550.128418] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7550.712891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7551.098145] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7551.240723] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7551.161621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7550.856934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7550.282715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7549.497559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7548.463867] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7547.146973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7545.568848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7543.627441] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7541.044922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7538.034668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7534.476074] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7530.826172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7526.810547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7521.957520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7517.119141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7510.898926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7504.803223] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7498.313965] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7491.031738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7484.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7475.671875] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7467.280273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7460.190918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7452.890137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7444.192383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7435.606934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7425.942871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7416.366211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7407.205078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7397.210449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7386.315918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7376.006348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7364.915039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7353.049805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7342.371582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7330.834473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7320.021484] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7308.393066] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7295.496582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7283.132324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7268.526367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7255.213867] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7240.821777] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7226.585938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7211.797363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7196.928711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7182.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7165.681152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7149.951172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7131.384277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7113.848145] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7096.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7077.129395] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7058.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7040.242188] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7021.866211] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7004.055176] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6985.247070] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6964.264160] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6943.406738] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6923.588379] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6903.997559] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6882.108887] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6861.618164] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6835.868164] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6808.044434] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6784.781250] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6760.351074] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6736.064941] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6713.068848] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6688.430176] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6662.973145] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6639.148438] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6614.941406] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6590.863281] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6566.933594] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6541.861328] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6518.423828] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6490.876465] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6465.988281] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6443.312988] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6419.603027] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6393.669434] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6369.089355] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6344.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6321.246582] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6297.498047] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6274.688965] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6249.704102] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6228.903809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6202.994141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6180.465820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6159.817871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6140.038086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6119.089844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6100.659180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6083.885254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6067.616211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6052.010254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6037.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6022.025879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6007.739258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5996.146973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5984.914063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5975.440918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5967.086914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5958.975098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.907227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5946.376465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5942.071777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5938.875977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5936.857910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5935.812012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5935.864746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5936.911621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5939.171875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5942.725586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5947.380859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5952.346191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5959.156738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6098.520508] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6112.786133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6124.442871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6136.290039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6147.439453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6157.887207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6168.580566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6179.083008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6189.739746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6201.412598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6212.777832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6224.324707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6235.077637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6246.246094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6258.119141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6269.244629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6281.276367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6292.097656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6302.556641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6313.652344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6326.646484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6337.468262] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6349.605469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6362.081543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6374.545410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6386.323730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6398.247070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6416.196777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6426.659180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6436.806641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6447.161133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6457.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6466.601563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6478.114258] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6487.737793] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6497.437012] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6507.129395] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6516.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6526.452148] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6535.853516] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6544.102539] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6553.137207] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6561.897949] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6569.972168] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6578.438477] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6586.647949] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6594.503906] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6602.057129] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6609.588379] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6616.872559] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6624.045410] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6630.867676] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6637.127441] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6643.278809] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6649.877441] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6655.973145] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6661.996094] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6667.872559] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6674.380371] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6679.930664] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6684.943359] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6689.585449] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6694.365234] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6698.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6703.441406] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6707.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6711.765137] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6715.750488] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6720.645508] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6723.875488] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6726.989258] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6729.979980] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6732.455078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6734.989258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6737.167969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6739.229492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6741.020508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6742.709473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6744.165039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6745.545898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6746.703125] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6748.331543] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.103516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.616699] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.854004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.643066] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6749.208008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6748.516113] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6747.601563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6746.363281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6744.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6742.656738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6740.281738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6737.884766] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6735.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6732.330566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6729.553223] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6726.275391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6722.925781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6719.057129] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6714.770996] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6710.520996] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6705.903809] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6700.944824] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6695.625488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6690.006348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6684.282227] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6677.951172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6670.994629] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6663.729004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6656.146484] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6647.662598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6639.442871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6630.882324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6621.726563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6612.251465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6602.926758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6592.904785] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6582.558105] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6571.474609] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6560.037109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6548.789063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6537.214844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6523.804688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6511.169922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6497.674316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6482.894043] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6467.448730] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6452.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6437.254883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6422.472168] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6407.239746] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6392.892578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6374.334961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6358.336426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6340.947754] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6323.915039] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6306.786133] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6287.400879] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6266.583496] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6246.878906] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6225.283691] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6205.874023] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6184.517578] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6154.864746] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6134.805176] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6111.696777] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6088.578613] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6067.202148] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6044.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6020.768555] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5998.920410] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5975.429688] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.859375] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5928.012695] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5905.579590] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5880.204590] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5851.306152] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5826.172852] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5802.031738] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5774.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5748.001465] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5720.197266] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5696.065430] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5670.836426] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5645.274414] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5619.716797] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5592.885742] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5565.110840] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5536.805664] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5507.727051] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5478.481934] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5452.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5427.505371] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5404.397949] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5382.193848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5355.759277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5333.736816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5312.058105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5291.265137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5270.609375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5251.665527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5232.615234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5215.336914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5199.845215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5185.618164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5173.566895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5161.312988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5151.469238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5143.261230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5136.199707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5130.139648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5125.581055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5122.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5120.320801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5119.763672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5120.562988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5122.957520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5126.975098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5132.587891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5139.885254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5147.343262] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5155.002930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5164.055664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5173.170898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5182.540039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5191.689453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5201.678711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5212.569336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5222.289551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5232.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5242.123047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5251.990234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5262.951660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5273.580078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5283.913086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5295.151367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5305.820801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5316.756348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5327.636230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5338.791992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5349.394531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5361.239258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5373.192383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5387.020020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5402.059570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5417.302246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5431.752930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5444.589355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5456.870117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5468.420410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5480.478027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5491.653320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5502.776367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5514.263672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5526.913574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5538.022461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5549.534180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5560.826172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5571.372559] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5582.411621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5593.553711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5603.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5613.943848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5624.549805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5634.800781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5644.794922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5655.510742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5665.565430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5675.490723] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5685.254395] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5695.215332] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5709.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5719.309570] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5728.377930] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5737.959961] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5747.121094] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5755.772949] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5763.945313] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5772.632324] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5780.662109] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5788.207520] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5796.074219] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5803.795410] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5811.906738] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5820.862305] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5828.969238] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5835.906250] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5843.461914] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5850.349121] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5857.152344] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5863.247070] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5869.050781] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5875.423828] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5881.308105] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5887.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5892.560547] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5897.782715] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5902.110840] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5906.813965] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5915.574707] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5919.272949] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5922.745605] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5926.269531] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5929.437500] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5932.447266] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5935.271484] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5937.855957] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5940.111328] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5942.227539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5944.080078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5945.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5947.300781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5948.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5949.657715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5950.575195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.232910] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.608398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.795898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.798828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.586426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5951.127441] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5950.534180] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5949.695801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5948.672852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5947.403320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5945.949707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5944.355469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5942.630371] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5940.446777] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5938.317871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5935.985840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5933.291992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5930.311035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5927.047363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5923.205566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5919.589355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5916.137207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5912.346191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5908.415039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5904.233398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5899.854492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5894.934570] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5889.158203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5882.853027] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5876.116211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5869.376465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5861.158691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5851.646973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5843.645020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5835.620117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5827.858398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5820.026367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5811.595215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5803.153809] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5793.876465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5784.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5774.898438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5765.076660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5754.672363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5744.188477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5732.314453] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5720.499023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5708.929688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5698.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5685.958984] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5674.674316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5661.830078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5649.883301] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5638.287598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5626.277344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5614.358887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5601.824707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5588.682129] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5574.506348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5560.466309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5545.500000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5530.026855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5515.392578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5498.903320] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5482.909668] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5466.019043] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5449.523926] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5430.898926] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5414.269043] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5394.803223] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5377.929688] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5359.897461] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5341.303223] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5323.085938] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5303.806152] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5284.849121] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5258.023438] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5236.002441] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5212.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5192.400391] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5166.611816] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5145.328125] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5121.876953] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5100.742188] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5078.271484] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5054.465820] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5034.729492] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5014.369141] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4993.060059] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4970.401367] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4948.738770] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4926.375977] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4906.148438] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4886.212891] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4866.541992] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4847.025879] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4828.216797] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4809.604004] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4790.998047] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4772.471191] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4754.658691] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4736.335938] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4720.864746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4705.342773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4690.299316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4675.888672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4663.448242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4651.259766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4639.973633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4630.671387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4622.110352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4614.156250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4607.237305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4601.054688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4595.354004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4591.526855] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4588.096680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4586.315430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4585.851563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4586.462891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4588.021973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4590.634277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4594.374023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4598.915527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4603.991699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4610.316895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4619.127930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4628.054688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4637.098633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4645.930176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4655.217285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4664.928223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4674.819824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4685.186035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4695.651855] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4705.016602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4714.778809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4724.130371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4734.188477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4744.141113] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4755.114746] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4767.146484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4779.592773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4789.938477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4800.504395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4812.137207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4822.271973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4833.526367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4844.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4854.538574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4863.858887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4873.127441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4882.544922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4891.685547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4900.541504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4910.224609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4920.012207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4929.204590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4938.865723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4948.075684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4968.653809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4979.564453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4991.403809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5001.340820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5013.224609] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5023.494141] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5034.243164] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5044.125000] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5054.822754] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5063.235840] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5074.698242] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5084.193848] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5094.768555] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5105.005371] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5115.041504] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5125.097656] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5137.904297] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5147.721680] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5156.428711] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5163.970215] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5170.850098] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5177.206543] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5183.775391] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5193.685547] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5200.600098] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5208.229980] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5214.236328] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5219.309082] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5224.299316] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5229.009766] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5233.708496] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5237.897949] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5241.618164] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5245.930176] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5249.180664] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5252.424316] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5255.492188] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5258.248047] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5260.770996] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5263.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5265.135742] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5266.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5268.788086] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5270.193359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5271.318848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5272.220215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5272.835938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5273.194336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5273.316406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5273.120117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5272.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5271.720703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5270.466309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5268.999023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5266.275391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5262.116211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5252.362305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5246.425781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5240.093750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5233.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5224.481934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5217.588379] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5206.150391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5197.316406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5189.639160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5180.521973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5171.373047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5162.652344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5154.168945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5145.418457] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5135.973145] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5126.640137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5116.084473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5106.401855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5093.041992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5079.879883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5068.831055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5057.844727] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5046.442871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5034.685059] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5022.701660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5011.194824] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4999.797363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4987.017090] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4973.576660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4958.164551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4945.412109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4932.604980] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4919.191406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4904.875977] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4887.684570] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4869.270020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4851.968262] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4833.952148] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4817.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4800.098145] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4783.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4766.750977] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4749.497070] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4730.707031] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4704.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4684.448242] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4662.988281] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4641.458496] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4618.704590] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4598.559570] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4577.660645] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4548.840820] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4497.527832] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4470.278320] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4446.784180] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4421.977051] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4398.498535] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4350.745117] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4328.340820] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4305.838379] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4284.150879] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4260.502930] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4238.292480] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4216.330078] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4195.287598] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4174.037598] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4151.215820] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4130.015625] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4107.975098] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4087.870117] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4065.232910] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4041.819824] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4021.278564] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4000.493164] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3979.958252] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3959.445313] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3938.679688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3918.676270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3899.041260] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3880.140137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3861.382813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3842.087158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3825.600098] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3810.006836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3794.181641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3779.148193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3763.260742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3749.385010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3736.601074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3723.889404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3714.324707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3705.203125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3696.518555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3689.902832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3683.416016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3678.731689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3675.406006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3672.876465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3671.468506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3671.175049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3671.987305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3673.770264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3676.341309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3680.024414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3684.534668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3690.007324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3696.863281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3704.802979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3712.412354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3720.571777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3730.785156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3740.589844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3750.895752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3761.307617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3772.164551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3782.811279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3792.994385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3803.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3813.783447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3824.349121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3836.736328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3849.746338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3860.162354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3871.101807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3882.414795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3893.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3905.902832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3917.877441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3929.324951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3943.292725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3955.676758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3966.674805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3977.852539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3990.050537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4002.977539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4018.121338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4029.767334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4043.033447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4055.196533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4066.530518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4078.147461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4089.399658] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4100.348633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4113.953613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4126.113281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4137.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4148.014648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4158.559570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4168.429199] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4178.537109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4188.329590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4196.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4207.040039] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4218.039551] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4228.565430] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4238.497559] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4247.631836] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4256.733887] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4266.040527] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4275.043945] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4283.671387] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4291.991699] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4300.436523] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4308.748535] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4316.297852] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4323.984863] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4332.146973] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4339.727539] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4346.869141] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4354.188965] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4361.199707] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4367.706055] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4374.033691] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4380.209473] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4386.538086] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4392.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4397.903320] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4403.012207] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4407.950684] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4412.687500] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4417.708984] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4422.302246] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4426.595215] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4430.621582] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4434.779297] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4438.388672] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4441.865234] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4445.084961] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4448.114258] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4451.119629] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4453.975586] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4456.490723] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4458.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4460.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4462.920898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4464.609863] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4466.125000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4467.533203] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4468.735840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4469.610352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4470.177734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4470.482422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4470.569336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4470.382324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4469.969238] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4469.327637] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4468.519531] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4467.098633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4465.558594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4463.854004] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4462.113281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4460.183594] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4458.147461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4455.775879] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4453.225586] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4450.511719] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4447.526367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4444.221191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4440.773926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4436.470703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4432.110352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4427.424805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4422.782715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4417.667969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4412.028809] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4406.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4400.324219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4392.690430] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4384.302246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4376.465820] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4368.586426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4359.247070] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4350.439941] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4341.943848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4333.358887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4324.648926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4316.271973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4307.700195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4298.367676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4288.800293] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4279.387695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4270.067871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4260.503418] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4249.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4238.721680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4227.491699] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4214.756348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4202.543457] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4188.618652] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4174.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4161.939941] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4147.598633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4133.827148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4120.841797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4107.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4094.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4079.614502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4063.184082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4049.845215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4035.664063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4021.281738] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4007.194824] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3991.669678] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3977.276367] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3962.159424] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3943.567871] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3925.952148] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3910.121826] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3893.694824] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3877.975342] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3861.212402] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3842.951416] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3825.635010] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3808.158936] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3788.937744] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3769.400146] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3749.604736] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3730.677979] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3711.867432] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3692.029541] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3672.515381] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3653.156250] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3633.557129] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3613.114014] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3592.887451] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3572.895264] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3552.793213] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3532.876953] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3513.768311] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3492.156494] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3471.859619] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3449.137695] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3426.086182] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3405.370850] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3384.532227] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3365.222412] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3344.726318] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3324.131348] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3304.352539] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3284.331543] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3260.557861] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3239.290527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3219.929932] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3201.205811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3178.401611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3158.135254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3142.120117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3124.988281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3108.050293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3092.038818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3076.802002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3062.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3050.374023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3038.615479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3026.424072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3015.978760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3006.092285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2996.898682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2988.135742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2979.861816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2972.898682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2966.676025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2960.674561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2955.129883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2951.171143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2947.762695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2945.191162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2943.336426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2942.055664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2941.465332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2941.655762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2942.566162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2944.021729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2946.104004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2948.819092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2951.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2955.677490] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2959.908691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2964.942139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2970.530518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2976.406006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2982.689209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2989.417480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2996.474854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3004.661621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3013.248535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3021.400635] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3030.456787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3039.545410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3048.873291] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3058.695313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3068.965820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3079.014404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3089.207520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3099.590576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3109.972168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3120.934082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3131.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3141.627441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3158.125977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3182.006592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3195.112305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3207.897705] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3220.407471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3233.095947] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3245.599609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3257.014160] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3269.646729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3281.346191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3292.438721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3309.123535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3321.594238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3334.039063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3345.430908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3356.437012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3368.562988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3379.313965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3390.160156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3401.369629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3412.008789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3422.448975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3432.657471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3443.032471] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3453.794189] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3463.572266] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3473.605713] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3483.907227] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3494.275146] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3503.596436] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3512.908447] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3521.795166] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3530.287598] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3539.110596] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3547.521729] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3555.661133] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3564.428467] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3571.785645] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3579.305176] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3586.151367] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3592.844971] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3600.513916] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3606.580322] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3612.807861] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3619.085693] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3625.243896] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3630.557129] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3636.147705] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3641.410400] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3646.245850] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3651.299561] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3655.761475] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3659.931396] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3663.705811] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3667.412598] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3671.033936] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3674.324951] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3677.323975] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3680.173096] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3683.005127] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3685.452148] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3687.666992] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3689.798828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3691.536865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3693.302979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3694.615723] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3695.678711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3696.543457] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3697.250732] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3697.712646] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3697.993408] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3698.046387] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3697.895752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3697.531250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3696.887207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3696.114014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3695.059326] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3693.753662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3692.170166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3690.527832] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3688.634521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3686.496582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3684.137451] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3681.520264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3678.838623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3675.755615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3672.622314] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3669.293213] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3665.526611] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3660.948730] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3656.680176] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3652.097412] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3646.384033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3640.115234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3632.594238] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3625.198975] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3616.797363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3608.102539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3596.272461] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3586.862793] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3577.310059] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3567.680176] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3557.919189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3547.422852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3538.340088] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3529.898926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3521.528809] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3512.485596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3502.920410] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3493.598389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3484.253906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3474.495850] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3464.039551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3454.485352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3443.240479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3430.555908] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3418.708496] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3406.581055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3394.807129] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3382.683105] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3370.707520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3358.282715] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3345.802979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3333.169678] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3319.961426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3306.602539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3292.789795] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3275.452393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3261.575195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3245.392578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3229.778809] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3214.335693] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3197.863525] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3181.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3166.014404] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3149.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3134.822998] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3118.374756] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3101.826904] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.431641] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3064.790527] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3046.931152] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3029.782715] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3013.830566] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2995.816162] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2977.500488] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2959.932861] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2940.758545] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2920.072266] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2899.682617] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2879.330322] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2858.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2839.848145] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2819.684326] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2799.152588] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2779.761230] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2760.357666] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2741.140869] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2720.776123] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2700.287109] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2679.840332] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2658.503418] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2635.837402] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2613.990967] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2593.293701] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2571.963623] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2550.921631] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2530.793457] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2510.950928] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2491.225586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2471.776123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2453.581299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2434.998291] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2417.116943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2401.319092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2384.963623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2370.386963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2354.743164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2339.304688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2326.031006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2313.863281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2301.370361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2291.612061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2282.847412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2274.887939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2268.155029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2262.166504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2256.753906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2252.447510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2249.223145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2247.044678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2245.906006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2245.703125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2246.485352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2248.175293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2250.914551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2254.637207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2258.762939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2264.110840] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2270.454834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2277.667480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2285.393066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2293.755615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2303.145996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2311.695557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2320.563721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2329.296387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2339.541992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2349.041016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2359.004883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2369.499268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2379.730225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2390.372070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2401.656006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2412.478516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2423.675537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2434.413574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2447.463623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2458.656738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2470.195068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2481.579590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2492.217773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2503.284668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2514.896484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2526.293213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2537.191162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2548.182861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2559.583984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2570.912354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2581.053223] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2591.543213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2601.538086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2611.564941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2621.737305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2632.380371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2642.767822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2652.887939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2663.033936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2673.020752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2683.731934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2693.101807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2703.003418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2711.956543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2721.100098] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2730.885498] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2740.537842] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2750.134521] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2758.402344] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2767.321533] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2776.715576] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2785.283691] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2793.834229] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2802.742432] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2811.016357] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2819.500488] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2827.935791] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2835.312256] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2842.506104] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2849.839355] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2856.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2864.033936] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2870.940186] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2877.652344] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2883.753906] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2889.526123] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2895.650391] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2901.561523] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2906.740723] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2911.779297] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2916.563232] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2921.143066] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2925.663330] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2929.765381] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2934.162598] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2938.177979] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2941.671143] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2944.971191] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2948.326660] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2951.672363] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2954.712402] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2956.977051] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.140000] [Roll: -0.110000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.130000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.120000] [Roll: -0.130000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.110000] [Roll: -0.140000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.100000] [Roll: -0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.809341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.445675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445665] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445492] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445803] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446173] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446634] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449652] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450489] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452265] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454218] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455927] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455450] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454786] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453226] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451149] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449780] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413805] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403730] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401768] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403469] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415213] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417349] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419748] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422876] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432163] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437479] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442926] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448271] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467947] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468258] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466480] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465244] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465853] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469681] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472393] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474958] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476316] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475817] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469427] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460869] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460419] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461895] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464575] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465647] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466658] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467932] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472012] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473774] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474098] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474394] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475266] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475565] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475790] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475925] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475880] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475773] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477451] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478519] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479643] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480621] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481236] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481777] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482126] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482485] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483385] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485289] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487549] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.501173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.504772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.516144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.523256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.531254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.540415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.551655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.560867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.570423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.580351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.593792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.609516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.628868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.651485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.680746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.717508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.763926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.824890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.892469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.975855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.077015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.205626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.366220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.547386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.757126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.023975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.338842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.633461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.965649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.350309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.758097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.288334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.810402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.360104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.955090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.686836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.357603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.195202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.154348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.127878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.005833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.011433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.108696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.336567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.618248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.928467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.280861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.842552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.484180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.166965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.003376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.877621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.969368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.072327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.310898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.484631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.946865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.633945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.279869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.903084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.485229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.202858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.216232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.205765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.292397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.561623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.233757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.511803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.992500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.476288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.329659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.046936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.783722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.624481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.526192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.811104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.303520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.295708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.100540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.283279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.806946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.723618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.388809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.208282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.259186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.897507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.912933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.866608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.284744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.787003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.088882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.115417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.305054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.157974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.237915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.238556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.411407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.708176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.612991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.673035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.761871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.025986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.276535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.030334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.851913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.741943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.540695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.116119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.707321] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.300858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.037598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.622925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.356293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.182373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.075745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.144775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.549866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.100433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.331940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.540558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.072784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.178925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.071594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.922577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.835297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.289459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.039673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.918793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.832855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.633331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.512299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.427338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.051575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.480255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.991791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.840973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.096405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.432953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.636749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.302734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.457275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.543152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.537537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.612823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.693115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.683716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.822540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.910736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.534912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.920349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.424194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.029724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.649200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.026672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.511169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.993011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.440765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.885956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.288361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.561432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.685791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.798676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.916687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.841583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.797882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.759918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.702576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.523621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.269470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.008850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.633270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.239868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.786102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.306335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.833130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.288239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.730164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.114410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.458191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.790588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.104614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.377594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.618073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.844574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.055298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.252136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.425385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.590546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.891296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.043915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.192566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.339966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.587769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.741302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.923767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.134003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.357025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.623535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.903320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.223114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.597412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.993622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.407562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.813568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.309570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.901428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.509003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.184814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.905396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.656372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.472687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.320892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.224152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.178589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.202148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.272980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.425110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.593872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.990417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.597260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.138062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.748596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.340240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.237366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.103943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.041412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.872406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.148193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.359558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.701843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.845276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.515137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.949310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.222748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.585480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.086823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.233368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.261749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.220825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.480865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.644653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.498138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.484314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.476166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.470673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.728088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.043182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.481842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.048096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.266815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.687103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.928650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.137695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.757263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.551758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.094849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.520508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.231506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.833618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.811157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.341858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.845947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.077271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.838867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.097900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.749512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.403992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.176697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.571228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.657532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.854370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.152100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.302490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.934937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.365967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.547729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.297974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.435181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.519592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.012695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.443420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.056091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.113037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.374329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.030579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.293762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.511047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.222656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.551086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.746399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.719727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.861023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.777466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.632019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.711975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.752502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.751282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.764526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.801514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.774231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.724670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.487427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.261353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.173462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.906311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.806763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.086914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.949463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.462219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.010315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.474304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.775635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.244751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.774963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.030151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.325806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.645020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.236938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.413696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.291992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.150513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.095032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.217590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.100525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.767761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.452576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.173157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.965210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.732971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.371887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.909607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.379272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.910522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.184204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.503174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.739929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.008423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.022034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.080078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.133240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.101868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.047424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.039612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.893188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.723877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.484436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.312134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.193848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.951965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.663940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.381042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.064148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.735107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.430847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.065857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.660645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.310242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.883789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.464905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.052307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.653870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.213196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.830322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.442688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.062561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.698730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.363098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.019897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.671692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.437378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.273315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.995422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.817322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.687378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.601501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.446533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.389465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.360229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.449951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.505310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.585022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.745300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.935486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.238098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.519775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.889832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.366943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.780884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.322266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.968750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.638550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.273499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.965820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.559387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.359131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.840393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.720398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.659546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.679199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.975769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.932678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.914429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.724792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.997131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.355408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.653992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.939575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.325317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.134399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.398010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.015381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.011658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.675049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.511536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.278503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.013550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.598389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.167114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.913940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.749573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.658752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.348206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.273010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.186523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.059204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.890320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.644958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.824280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.976196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.145996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.887512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.811829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.801819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.779053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.906799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.961975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.453674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.544067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.902283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.124207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.142334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.116638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.392029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.546692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.825562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.221375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.807129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.851379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.370178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.705383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.923279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.413147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.628906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.897095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.233643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.507874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.046326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.291016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.479309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.447693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.447693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.292969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.955627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.684814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.563751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.661377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.572510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.336548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.322296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.260193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.348907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.329102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.413818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.156433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.008331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.252075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.133514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.375214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.332458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.450012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.449982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.800888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.465012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.264984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.804932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.565384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.429840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.691574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.651459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.397614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.391281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.868347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.935684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.332169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.299606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.826859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.796432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.144592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.110779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.476181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.181808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.626480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.389542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.097305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.146423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.585129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.425079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.998840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.783417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.497513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.437424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.218582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.233170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.464066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.555786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.931992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.810173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.508202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.562164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.785934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.877113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.363770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.539276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.343826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.372391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.347626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.345848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.243103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.373535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.311836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.478996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.665314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.932495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.398079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.724892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.478992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.838440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.750721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.038567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.606213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.008869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.852016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.347717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.527828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.111156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.600975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.225739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.963402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.588383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.780445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.572464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.415890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.303242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.808975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.785213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.927986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.010117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.722210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.913128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.530651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.850452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.928257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.428989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.169319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.716473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.856422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.412060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.362465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.935024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.875263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.743816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.574028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.486763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.171364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.300331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.048180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.326187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.492027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.688904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.377167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.648605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.297287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.727295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.950180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.571747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.985596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.936432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.279419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.740082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.107300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.103577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.077271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.425171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.515076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.560303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.317566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.221497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.861633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.966492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.297241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.187927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.568420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.426697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.048706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.034729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.903625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.751282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.974487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.299194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.928955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.836609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.315063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.021179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.227539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.549805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.695435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.214294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.192627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.912842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.751587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.604431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.816406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.844788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.423706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.246643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.208374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.135193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.150391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.769470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.923401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.681580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.028503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.187378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.603821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.356567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.615356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.072876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.699402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.721741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.029480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.972107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.299438] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.104675] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.711487] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.718262] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.287292] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.385803] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.011536] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.165955] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.623535] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.959534] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.902832] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.519897] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.532776] [T/O: false ][Cruise: true ] +[Elevator: -0.520429] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.143066] [T/O: false ][Cruise: true ] +[Elevator: -0.520429] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.820313] [T/O: false ][Cruise: true ] +[Elevator: -0.520429] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.885315] [T/O: false ][Cruise: true ] +[Elevator: -0.455467] [Roll: -0.167983] [Yaw: -0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.070374] [T/O: false ][Cruise: true ] +[Elevator: -0.008980] [Roll: -0.663232] [Yaw: -0.132646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.811218] [T/O: false ][Cruise: true ] +[Elevator: 0.122932] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.184814] [T/O: false ][Cruise: true ] +[Elevator: 0.335050] [Roll: -0.185659] [Yaw: -0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.269958] [T/O: false ][Cruise: true ] +[Elevator: 0.557884] [Roll: -0.109159] [Yaw: -0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.181641] [T/O: false ][Cruise: true ] +[Elevator: 0.591450] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.687622] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.736450] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.927551] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.339905] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.200439] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.513550] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.591370] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.093350] [Yaw: -0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.919434] [T/O: false ][Cruise: true ] +[Elevator: 0.513753] [Roll: -0.259626] [Yaw: -0.051925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.718262] [T/O: false ][Cruise: true ] +[Elevator: 0.459643] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.786987] [T/O: false ][Cruise: true ] +[Elevator: 0.427769] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.445496] [T/O: false ][Cruise: true ] +[Elevator: 0.427769] [Roll: -0.399532] [Yaw: -0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.456360] [T/O: false ][Cruise: true ] +[Elevator: 0.448968] [Roll: -0.409963] [Yaw: -0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.448853] [T/O: false ][Cruise: true ] +[Elevator: 0.481142] [Roll: -0.420448] [Yaw: -0.084090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.930725] [T/O: false ][Cruise: true ] +[Elevator: 0.614042] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.076843] [T/O: false ][Cruise: true ] +[Elevator: 0.614042] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.909790] [T/O: false ][Cruise: true ] +[Elevator: 0.614042] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.326782] [T/O: false ][Cruise: true ] +[Elevator: 0.614042] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.221985] [T/O: false ][Cruise: true ] +[Elevator: 0.614042] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.894775] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.552124] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.067993] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.114258] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.148682] [T/O: false ][Cruise: true ] +[Elevator: 0.602725] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.133545] [T/O: false ][Cruise: true ] +[Elevator: 0.513753] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.460876] [T/O: false ][Cruise: true ] +[Elevator: 0.295365] [Roll: -0.250117] [Yaw: -0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.591614] [T/O: false ][Cruise: true ] +[Elevator: 0.068393] [Roll: -0.070628] [Yaw: -0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.820557] [T/O: false ][Cruise: true ] +[Elevator: 0.040531] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.116821] [T/O: false ][Cruise: true ] +[Elevator: 0.016202] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.193115] [T/O: false ][Cruise: true ] +[Elevator: 0.006117] [Roll: 0.003162] [Yaw: 0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.859680] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.623108] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.377075] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.680115] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.835266] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.727783] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.866516] [T/O: false ][Cruise: true ] +[Elevator: 0.012008] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.510315] [T/O: false ][Cruise: true ] +[Elevator: 0.022008] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.588989] [T/O: false ][Cruise: true ] +[Elevator: 0.032008] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.022583] [T/O: false ][Cruise: true ] +[Elevator: 0.042008] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.032471] [T/O: false ][Cruise: true ] +[Elevator: 0.052008] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.473389] [T/O: false ][Cruise: true ] +[Elevator: 0.062008] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.260254] [T/O: false ][Cruise: true ] +[Elevator: 0.072008] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.410278] [T/O: false ][Cruise: true ] +[Elevator: 0.082008] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.922668] [T/O: false ][Cruise: true ] +[Elevator: 0.092008] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.890381] [T/O: false ][Cruise: true ] +[Elevator: 0.102008] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.057800] [T/O: false ][Cruise: true ] +[Elevator: 0.112008] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.769470] [T/O: false ][Cruise: true ] +[Elevator: 0.122008] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.520264] [T/O: false ][Cruise: true ] +[Elevator: 0.132008] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.413208] [T/O: false ][Cruise: true ] +[Elevator: 0.142008] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.672424] [T/O: false ][Cruise: true ] +[Elevator: 0.152008] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.499207] [T/O: false ][Cruise: true ] +[Elevator: 0.162008] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.764526] [T/O: false ][Cruise: true ] +[Elevator: 0.172008] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.846741] [T/O: false ][Cruise: true ] +[Elevator: 0.182008] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.000549] [T/O: false ][Cruise: true ] +[Elevator: 0.192008] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.035950] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.832458] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.161926] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.758057] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.861694] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.731628] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.191223] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.050232] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.546875] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.753723] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.464417] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.522644] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.804932] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.971069] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.311523] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.608826] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.398987] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.483093] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.723511] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.830200] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.615234] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.836975] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.490234] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.267151] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.729736] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.524231] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.730652] [T/O: false ][Cruise: true ] +[Elevator: 0.202008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.732971] [T/O: false ][Cruise: true ] +[Elevator: 0.192008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.001343] [T/O: false ][Cruise: true ] +[Elevator: 0.182008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.815979] [T/O: false ][Cruise: true ] +[Elevator: 0.172008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.001648] [T/O: false ][Cruise: true ] +[Elevator: 0.162008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.218018] [T/O: false ][Cruise: true ] +[Elevator: 0.152008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.131775] [T/O: false ][Cruise: true ] +[Elevator: 0.142008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.449036] [T/O: false ][Cruise: true ] +[Elevator: 0.132008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.868042] [T/O: false ][Cruise: true ] +[Elevator: 0.122008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.750854] [T/O: false ][Cruise: true ] +[Elevator: 0.112008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.761047] [T/O: false ][Cruise: true ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.299683] [T/O: false ][Cruise: true ] +[Elevator: 0.092008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.832458] [T/O: false ][Cruise: true ] +[Elevator: 0.082008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.280762] [T/O: false ][Cruise: true ] +[Elevator: 0.072008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.050293] [T/O: false ][Cruise: true ] +[Elevator: 0.062008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.409546] [T/O: false ][Cruise: true ] +[Elevator: 0.052008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.838989] [T/O: false ][Cruise: true ] +[Elevator: 0.042008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.977905] [T/O: false ][Cruise: true ] +[Elevator: 0.032008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.446167] [T/O: false ][Cruise: true ] +[Elevator: 0.022008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.711426] [T/O: false ][Cruise: true ] +[Elevator: 0.012008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.478516] [T/O: false ][Cruise: true ] +[Elevator: 0.002008] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.932983] [T/O: false ][Cruise: true ] +[Elevator: -0.007992] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.384644] [T/O: false ][Cruise: true ] +[Elevator: -0.017992] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.799194] [T/O: false ][Cruise: true ] +[Elevator: -0.027992] [Roll: -0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.308228] [T/O: false ][Cruise: true ] +[Elevator: -0.037992] [Roll: -0.150000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.430054] [T/O: false ][Cruise: true ] +[Elevator: -0.047992] [Roll: -0.140000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.849243] [T/O: false ][Cruise: true ] +[Elevator: -0.057992] [Roll: -0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.981934] [T/O: false ][Cruise: true ] +[Elevator: -0.067992] [Roll: -0.120000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.297363] [T/O: false ][Cruise: true ] +[Elevator: -0.077992] [Roll: -0.110000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.790283] [T/O: false ][Cruise: true ] +[Elevator: -0.087992] [Roll: -0.100000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.618286] [T/O: false ][Cruise: true ] +[Elevator: -0.097992] [Roll: -0.090000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.247437] [T/O: false ][Cruise: true ] +[Elevator: -0.107992] [Roll: -0.080000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.737183] [T/O: false ][Cruise: true ] +[Elevator: -0.117992] [Roll: -0.070000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.103638] [T/O: false ][Cruise: true ] +[Elevator: -0.127992] [Roll: -0.060000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.564697] [T/O: false ][Cruise: true ] +[Elevator: -0.137992] [Roll: -0.050000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.195801] [T/O: false ][Cruise: true ] +[Elevator: -0.147992] [Roll: -0.040000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.620850] [T/O: false ][Cruise: true ] +[Elevator: -0.157992] [Roll: -0.030000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.015259] [T/O: false ][Cruise: true ] +[Elevator: -0.167992] [Roll: -0.020000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.109009] [T/O: false ][Cruise: true ] +[Elevator: -0.177992] [Roll: -0.010000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.187992] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.531006] [T/O: false ][Cruise: true ] +[Elevator: -0.197992] [Roll: 0.010000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.091064] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.020000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.198853] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.030000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.550781] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.040000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.680176] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.050000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.269531] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.060000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.980835] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.070000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.511353] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.080000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.643555] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.090000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.424438] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.100000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.917480] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.110000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.313110] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.120000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.510010] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.302002] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.140000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.822754] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.150000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.137085] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.237671] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.182983] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.885376] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.284668] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.348389] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.111206] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.489502] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.607666] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.405396] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.209106] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.240723] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.858765] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.245239] [T/O: false ][Cruise: true ] +[Elevator: -0.207992] [Roll: 0.160000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.561264] [T/O: true ][Cruise: false ] +[Elevator: -0.197992] [Roll: 0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.457153] [T/O: true ][Cruise: false ] +[Elevator: -0.187992] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.225952] [T/O: true ][Cruise: false ] +[Elevator: -0.177992] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.961853] [T/O: true ][Cruise: false ] +[Elevator: -0.167992] [Roll: 0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.477898] [T/O: true ][Cruise: false ] +[Elevator: -0.157992] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.550720] [T/O: true ][Cruise: false ] +[Elevator: -0.147992] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.176544] [T/O: true ][Cruise: false ] +[Elevator: -0.137992] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.782272] [T/O: true ][Cruise: false ] +[Elevator: -0.127992] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.347580] [T/O: true ][Cruise: false ] +[Elevator: -0.117992] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.006172] [T/O: true ][Cruise: false ] +[Elevator: -0.107992] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.829597] [T/O: true ][Cruise: false ] +[Elevator: -0.097992] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.103928] [T/O: true ][Cruise: false ] +[Elevator: -0.087992] [Roll: 0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.077992] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.067992] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.057992] [Roll: 0.050000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.047992] [Roll: 0.060000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.037992] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.027992] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.017992] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: -0.007992] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.002008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.012008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.022008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.032008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.042008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.052008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.062008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.072008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.082008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.092008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.102008] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.489906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.445963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447556] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447796] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447992] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448215] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448477] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449255] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451405] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453127] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454037] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455898] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459986] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459246] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456415] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455381] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454172] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452621] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450821] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448524] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445652] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442553] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438705] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434708] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430479] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421680] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413363] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405571] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404778] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406618] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408808] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411135] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413269] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415216] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418980] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421474] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443487] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459866] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464226] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468054] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469284] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469473] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468384] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471786] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474491] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482058] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476479] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465691] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465900] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466402] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467119] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469259] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469494] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469986] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470694] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473391] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480150] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482725] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483810] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484966] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485819] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486225] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487188] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488256] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489555] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490667] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491467] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492027] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492147] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.499229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.506508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.510471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.513355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.515818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.519039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.524611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.532263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.541656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.552164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.564569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.579309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.602751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.625679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.653519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.693287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.738520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.793200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.858240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.950827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.049957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.159527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.294415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.444567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.610659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.820965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.103485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.362490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.632837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.947643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.316193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.716242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.178062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.662376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.267084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.921095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.544447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.183596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.934971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.764790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.595449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.611780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.728592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.884628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.073587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.352894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.602886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.026508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.496216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.005920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.689838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.262897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.042587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.935398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.001122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.150944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.359688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.773586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.360874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.878819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.496029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.173271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.417000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.201004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.927696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.899628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.195122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.327530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.742508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.069199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.232246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.824921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.550827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.270660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.351738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.230774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.108932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.036324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.209991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.379715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.414825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.848984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.066147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.590225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.678497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.985382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.209473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.325684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.726044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.871780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.588181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.848785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.072098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.535034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.793427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.248428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.195801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.776352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.630890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.213531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.227951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.716110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.741837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.973358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.964035] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.381149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.497284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.615387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.637039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.834137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.894318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.036652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.141113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.874725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.907867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.844696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.472107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.523804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.129303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.821472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.256775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.480408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.382751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.335907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.570770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.821716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.911224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.923553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.798218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.806274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.779510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.685822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.546448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.179932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.893005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.551025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.094086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.173737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.959045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.425415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.652374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.468170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.669952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.748322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.811310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.765686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.697632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.740662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.647644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.669617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.218994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.663849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.999237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.468628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.857452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.135437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.288574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.448669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.569763] [T/O: true ][Cruise: false ] +[Elevator: 0.010921] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.708038] [T/O: true ][Cruise: false ] +[Elevator: 0.010921] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.851898] [T/O: true ][Cruise: false ] +[Elevator: 0.010921] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.975891] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.923370] [T/O: true ][Cruise: false ] +[Elevator: 0.535728] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.964600] [T/O: true ][Cruise: false ] +[Elevator: 0.524717] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.942413] [T/O: true ][Cruise: false ] +[Elevator: 0.491965] [Roll: -0.109159] [Yaw: -0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.814148] [T/O: true ][Cruise: false ] +[Elevator: 0.448968] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.632233] [T/O: true ][Cruise: false ] +[Elevator: 0.386004] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.364471] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.101837] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.783325] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.546051] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.322540] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.479126] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.430756] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.420044] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.609711] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.850464] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.154083] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.617950] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.162689] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.844421] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.793976] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.735596] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.767792] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.130157] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.423615] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.961792] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.489319] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.925659] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.972900] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.831604] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.843414] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.551483] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.681000] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.272339] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.851410] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.349243] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.818329] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.370392] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.964539] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.786133] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.109528] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.398956] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.505981] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.016724] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.976135] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.536896] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.358185] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.135895] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.241150] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.217804] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.396362] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.520264] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.589783] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.831421] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.734680] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.643127] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.611816] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.537476] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.279602] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.682068] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.743958] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.447937] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.057068] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.542297] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.951111] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.407715] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.847656] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.015198] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.888306] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.670532] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.340271] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.868042] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.322693] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.785645] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.063232] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.293091] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.699280] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.824280] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.996338] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.904663] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.693298] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.321655] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.910645] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.299072] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.532410] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.580872] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.505371] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.258728] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.807495] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.219238] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.454407] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.522949] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.383850] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.043884] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.513245] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.760681] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.822815] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.765808] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.483398] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.828430] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.026245] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.060486] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.816345] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.390991] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.862732] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.848022] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.038391] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.163391] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.595520] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.903381] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.413818] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.580017] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.420105] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.514893] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.645813] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.044861] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.110962] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.686462] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.566437] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.169800] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.815887] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.074860] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.354034] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.697601] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.469604] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.517303] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.248169] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.081146] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.289398] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.327454] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.785370] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.661072] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.806061] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.537750] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.287048] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.916443] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.414063] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.464752] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.171814] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.916214] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.742432] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.780777] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.174347] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.012192] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.842560] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.740005] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.696442] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.812698] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.015030] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.025271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.558716] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.055271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.226410] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.085271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.916565] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.115271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.866928] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.145271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.590958] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.175271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.953629] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.205271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.952728] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.235271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.889114] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.265271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.418411] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.295271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.518875] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.265271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.029343] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.235271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.717804] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.205271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.006287] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.175271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.554886] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.145271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.859161] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.115271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.212891] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.085271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.974930] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.055271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.667343] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: -0.025271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.078552] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.805573] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.375244] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.723175] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.263763] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.278839] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.620544] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.556152] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.217377] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.064972] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.004669] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.733093] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.516998] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.534821] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.136963] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.374969] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.231476] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.789124] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.217316] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.365967] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.026093] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.738556] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.363831] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.252411] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.979309] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.333435] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.899933] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.041046] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.796600] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.321716] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.078644] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.152832] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.108337] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.288574] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.753662] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.634460] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.644165] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.494873] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.671387] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.451904] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.884094] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.670959] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.926270] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.976929] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.366089] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.216797] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.007324] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.141724] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.723511] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.970764] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.800903] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.549805] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.876099] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.750427] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.447571] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.153076] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.818665] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.140808] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.408752] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.861450] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.287170] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.703796] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.256836] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.062256] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.351440] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.092224] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.365540] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.250366] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.591370] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.421997] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.633484] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.797852] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.601318] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.341675] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.585449] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.904663] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.419067] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.096802] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.338318] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.145630] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.653259] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.637634] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.691711] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.284241] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.869202] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.377625] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.953552] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.812439] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.820496] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.087219] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.739929] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.420898] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.761292] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.323853] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.259216] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.440430] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.416931] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.608398] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.845734] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.801422] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.301117] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.051147] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.193665] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.499481] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.012360] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.760925] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.250122] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.719452] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.190308] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.052765] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.233246] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.589996] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.789948] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.737640] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.404175] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.422272] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.247131] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.820068] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.739578] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.388962] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.996826] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.339462] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.550430] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.706345] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.501862] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.350601] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.137375] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.734909] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.288406] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.793198] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.217789] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.634537] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.332413] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.206955] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.819519] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.263962] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.876846] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.477081] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.190399] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.640991] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.338654] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.944519] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.280151] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.815033] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.463348] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.143555] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.224487] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.110474] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.254669] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.157654] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.173798] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.174683] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.144012] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.231689] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.297882] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.604370] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.397003] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.349426] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.570587] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.584045] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.279724] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.341858] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.131104] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.646484] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.385315] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.042480] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.674316] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.614563] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.225342] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.935059] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.570313] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.770508] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.671448] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.456238] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.328796] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.973328] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.960938] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.330200] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.507935] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.764099] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.339966] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.978088] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.633606] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.415955] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.515320] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.618469] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.438293] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.957153] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.140076] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.820129] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.738770] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.934082] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.130920] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.370972] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.907715] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.637451] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.233154] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.227661] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.865784] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.074951] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.734375] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.355408] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.130615] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.384521] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.131409] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.382507] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.131226] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.360901] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.861816] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.945984] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.498474] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.888367] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.763733] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.124695] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.609619] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.143250] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.016296] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.209839] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.132996] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.641541] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.023804] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.601746] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.572571] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.808533] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.925842] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.513550] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.436951] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.623779] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.415649] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.400269] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.166565] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.371338] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.582031] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.065674] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.058594] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.571045] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.749573] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.527588] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.140808] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.918579] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.057739] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.800598] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.058380] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.232910] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.960175] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.917175] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.646576] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.509491] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.908936] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.208282] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.531097] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.874146] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.542389] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.754395] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.791351] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.268738] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.725616] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.882843] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.504913] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.411652] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.784180] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.113312] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.402679] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.987946] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.478638] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.153320] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.676727] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.257019] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.916779] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.800842] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.652954] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.013458] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.996613] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.528931] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.049988] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.168823] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.172974] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.650970] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.368408] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.384033] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.364624] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.608459] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.387054] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.073273] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.384583] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.277863] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.624146] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.502716] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.295685] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.521851] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.501923] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.033234] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.223999] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.718201] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.339813] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.214111] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.679871] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.257141] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.462219] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.875610] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: -0.025271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.409424] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.436096] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.668640] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.080017] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.660645] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.682678] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.656738] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.995972] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.917175] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.371582] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.164246] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.588440] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.169006] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.019043] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.908203] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.820129] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.565979] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.371765] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.445190] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.585022] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.756226] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.301514] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.152283] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.999756] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.368835] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.136292] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.059937] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.858887] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.627747] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.580566] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.771057] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.633362] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.100769] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.173889] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.864075] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.049561] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.927124] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.361206] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.442810] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.872192] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.259338] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.538452] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.405518] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.662231] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.483093] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.279602] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.611450] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.834656] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.987671] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.662048] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.015259] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.497253] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.467407] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.604126] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.877930] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.690125] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.373840] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.136230] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.456421] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.089355] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.732849] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.689514] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.668579] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.137573] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.129822] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.482727] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.869934] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.837158] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.813843] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.942749] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.774414] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.156677] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.220459] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.799866] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.648315] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.388977] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.528931] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.104553] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.972717] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.491455] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.848389] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.510559] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.600494] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.927368] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.782379] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.280914] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.174744] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.145905] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.265289] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.391022] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.161865] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.775909] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.240509] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.048645] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.327728] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.839233] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.147736] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.610107] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.801788] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.958710] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.620972] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.529510] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.294128] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.235229] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.182800] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.072388] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.136078] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.519684] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.624115] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.834564] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.236237] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.535187] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.240509] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.151733] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.130066] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.836182] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.645538] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.577148] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.924347] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.820801] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.406677] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.358307] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.860138] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.268707] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.723999] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.019440] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.459442] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.688843] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.507477] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.571167] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.038574] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.278687] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.874695] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.302307] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.130432] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.538086] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.580261] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.388245] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.024048] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.944946] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.427185] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.699280] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.253174] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.858948] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.902283] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.127563] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.288086] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.650330] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.288513] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.350342] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.110657] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.829102] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.724609] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.271912] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.228577] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.630554] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.037659] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.957764] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.201355] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.318542] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.607605] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.095581] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.368408] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.931213] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.051331] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.155457] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.879700] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.416138] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.757568] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.996582] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.620300] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.532898] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.577148] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.091248] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.225037] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.833252] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.099792] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.654602] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.754883] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.408630] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.603271] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.327271] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.588806] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.464783] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.812134] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.708069] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.002686] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.083313] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.611633] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.223816] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.592041] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.776794] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.623962] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.099792] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.048645] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.071289] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.629089] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.611755] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.332214] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.658630] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.728271] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.744629] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.689758] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.898804] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.908936] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.658875] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.838806] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.536865] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.929443] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.364990] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.831787] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.675476] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.328918] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.312744] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.733521] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.163513] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.878784] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.150513] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.595764] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.447693] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.974670] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.909363] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.096497] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.268188] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.958862] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.798889] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.194153] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.218079] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.064301] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.523224] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.838379] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.352570] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.168518] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.134094] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.953979] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.113495] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.753815] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.959076] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.654419] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.185303] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.629700] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.143311] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.612000] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.869110] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.207703] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.196838] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.935699] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.962860] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.426453] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.141693] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.017120] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.761017] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.092255] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.212128] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.830841] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.864655] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.473022] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.025665] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.948639] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.387085] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.354370] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.503296] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.201294] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.409180] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.331726] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.896240] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.122070] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.360046] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.033644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.514404] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.023644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.433777] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.013644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.798035] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 0.003644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.347534] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.006356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.186279] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.016356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.046326] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.026356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.118774] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.036356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.308167] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.046356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.624207] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.056356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.960571] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.066356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.919495] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.076356] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.856567] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.086356] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.565125] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.096356] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.079163] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.106356] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.241943] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.116356] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.350098] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.126356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.757263] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.136356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.437195] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.146356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.504761] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.957397] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.906738] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.374329] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.575684] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.957458] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.329590] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.757690] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.596558] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.176208] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.646851] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.025271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.006042] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.055271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.457092] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.085271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.986511] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.115271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.785278] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.145271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.454346] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.175271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.161560] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.205271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.188416] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.235271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.558472] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.265271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.659912] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.295271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.516663] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.325271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.346375] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.355271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.677734] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.385271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.136169] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.415271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.693298] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.445271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.693054] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.475271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.641602] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.181824] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.886353] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.134460] [T/O: true ][Cruise: false ] +[Elevator: 0.396779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.927307] [T/O: false ][Cruise: true ] +[Elevator: 0.386779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.283264] [T/O: false ][Cruise: true ] +[Elevator: 0.376779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.185120] [T/O: false ][Cruise: true ] +[Elevator: 0.366779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.530579] [T/O: false ][Cruise: true ] +[Elevator: 0.356779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.586731] [T/O: false ][Cruise: true ] +[Elevator: 0.346779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.196411] [T/O: false ][Cruise: true ] +[Elevator: 0.336779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.244324] [T/O: false ][Cruise: true ] +[Elevator: 0.326779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.708801] [T/O: false ][Cruise: true ] +[Elevator: 0.316779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.365173] [T/O: false ][Cruise: true ] +[Elevator: 0.306780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.513489] [T/O: false ][Cruise: true ] +[Elevator: 0.296780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.560608] [T/O: false ][Cruise: true ] +[Elevator: 0.286780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.490845] [T/O: false ][Cruise: true ] +[Elevator: 0.276780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.607483] [T/O: false ][Cruise: true ] +[Elevator: 0.266780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.975891] [T/O: false ][Cruise: true ] +[Elevator: 0.256780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.269592] [T/O: false ][Cruise: true ] +[Elevator: 0.246780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.363159] [T/O: false ][Cruise: true ] +[Elevator: 0.236780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.217163] [T/O: false ][Cruise: true ] +[Elevator: 0.226780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.863892] [T/O: false ][Cruise: true ] +[Elevator: 0.216780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.111084] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.063049] [T/O: false ][Cruise: true ] +[Elevator: 0.196780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.711182] [T/O: false ][Cruise: true ] +[Elevator: 0.186780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.644409] [T/O: false ][Cruise: true ] +[Elevator: 0.176780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.364563] [T/O: false ][Cruise: true ] +[Elevator: 0.166780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.786316] [T/O: false ][Cruise: true ] +[Elevator: 0.156779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.644958] [T/O: false ][Cruise: true ] +[Elevator: 0.146779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.193970] [T/O: false ][Cruise: true ] +[Elevator: 0.136779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.580261] [T/O: false ][Cruise: true ] +[Elevator: 0.126779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.056396] [T/O: false ][Cruise: true ] +[Elevator: 0.116779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.072021] [T/O: false ][Cruise: true ] +[Elevator: 0.106779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.834900] [T/O: false ][Cruise: true ] +[Elevator: 0.116779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.298096] [T/O: false ][Cruise: true ] +[Elevator: 0.126779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.411316] [T/O: false ][Cruise: true ] +[Elevator: 0.136779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.405273] [T/O: false ][Cruise: true ] +[Elevator: 0.146779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.112427] [T/O: false ][Cruise: true ] +[Elevator: 0.156779] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.577637] [T/O: false ][Cruise: true ] +[Elevator: 0.166780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.358459] [T/O: false ][Cruise: true ] +[Elevator: 0.176780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.610901] [T/O: false ][Cruise: true ] +[Elevator: 0.186780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.709412] [T/O: false ][Cruise: true ] +[Elevator: 0.196780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.749268] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.181641] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.233154] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.422119] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.004944] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.797791] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.208618] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.958191] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.989441] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.815063] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.319336] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.892456] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.843506] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.042542] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.187073] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.582855] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.191650] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.579041] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.094940] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.972382] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.128723] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.603241] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.896729] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.767029] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.327301] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.146356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.876953] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.136356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.256012] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.126356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.448181] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.116356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.350220] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.106356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.917542] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.096356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.118362] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.086356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.643509] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.076356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.230148] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.066356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.643097] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.056356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.576797] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.046356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.397995] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.036356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.258667] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.026356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.101105] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.016356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.877930] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.006356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.598038] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.003644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.301849] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.013644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.974686] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.023644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.633820] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.033644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.385559] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.043644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.912476] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.053644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.221146] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.063644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.116562] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.073644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.426514] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.083644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.832748] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.093644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.778061] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.103644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.546616] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.113644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.909729] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.123644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.032043] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.133644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.156189] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.143644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.503906] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.679901] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.080597] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.816742] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.866547] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.455231] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.172485] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.016785] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.185394] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.506470] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.143860] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.843964] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.498871] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.971222] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.092346] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.151794] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.358521] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.068298] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.708313] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.877930] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.119629] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.178772] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.832825] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.549927] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.075745] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.499695] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.222046] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.271545] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.727173] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.765320] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.920288] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.362549] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.945740] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.644165] [T/O: false ][Cruise: true ] +[Elevator: 0.196780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.830017] [T/O: false ][Cruise: true ] +[Elevator: 0.186780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.499451] [T/O: false ][Cruise: true ] +[Elevator: 0.176780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.108948] [T/O: false ][Cruise: true ] +[Elevator: 0.166780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.928284] [T/O: false ][Cruise: true ] +[Elevator: 0.156779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.368408] [T/O: false ][Cruise: true ] +[Elevator: 0.146779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.996399] [T/O: false ][Cruise: true ] +[Elevator: 0.136779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.777283] [T/O: false ][Cruise: true ] +[Elevator: 0.126779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.891418] [T/O: false ][Cruise: true ] +[Elevator: 0.116779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.570435] [T/O: false ][Cruise: true ] +[Elevator: 0.106779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.501282] [T/O: false ][Cruise: true ] +[Elevator: 0.096779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.836731] [T/O: false ][Cruise: true ] +[Elevator: 0.086779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.021973] [T/O: false ][Cruise: true ] +[Elevator: 0.076779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.829041] [T/O: false ][Cruise: true ] +[Elevator: 0.066779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.773254] [T/O: false ][Cruise: true ] +[Elevator: 0.056779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.878357] [T/O: false ][Cruise: true ] +[Elevator: 0.046779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.559448] [T/O: false ][Cruise: true ] +[Elevator: 0.036780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.555908] [T/O: false ][Cruise: true ] +[Elevator: 0.026780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.251038] [T/O: false ][Cruise: true ] +[Elevator: 0.016780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.713501] [T/O: false ][Cruise: true ] +[Elevator: 0.006780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.070679] [T/O: false ][Cruise: true ] +[Elevator: -0.003220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.077393] [T/O: false ][Cruise: true ] +[Elevator: -0.013220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.596741] [T/O: false ][Cruise: true ] +[Elevator: -0.023220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.501038] [T/O: false ][Cruise: true ] +[Elevator: -0.033220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.109314] [T/O: false ][Cruise: true ] +[Elevator: -0.043220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.674988] [T/O: false ][Cruise: true ] +[Elevator: -0.053220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.911316] [T/O: false ][Cruise: true ] +[Elevator: -0.063220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.318054] [T/O: false ][Cruise: true ] +[Elevator: -0.073220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.165771] [T/O: false ][Cruise: true ] +[Elevator: -0.083220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.167725] [T/O: false ][Cruise: true ] +[Elevator: -0.093220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.672424] [T/O: false ][Cruise: true ] +[Elevator: -0.103220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.891296] [T/O: false ][Cruise: true ] +[Elevator: -0.113220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.658447] [T/O: false ][Cruise: true ] +[Elevator: -0.123220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.785217] [T/O: false ][Cruise: true ] +[Elevator: -0.133220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.002869] [T/O: false ][Cruise: true ] +[Elevator: -0.143220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.256531] [T/O: false ][Cruise: true ] +[Elevator: -0.153220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.887817] [T/O: false ][Cruise: true ] +[Elevator: -0.163220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.290405] [T/O: false ][Cruise: true ] +[Elevator: -0.173221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.796753] [T/O: false ][Cruise: true ] +[Elevator: -0.183221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.457886] [T/O: false ][Cruise: true ] +[Elevator: -0.193221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.215698] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.545898] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.313232] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.740601] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.924927] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.560791] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.779175] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.611328] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.081909] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.234619] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.972046] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.213135] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.991699] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.229614] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.077515] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.515747] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.973389] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.285461] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.325867] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.163025] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.060974] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.111816] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.718262] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.756897] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.173096] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.369385] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.565369] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.475708] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.437195] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.980408] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.485962] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.596497] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.364136] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.100342] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.958801] [T/O: false ][Cruise: true ] +[Elevator: -0.203221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.211365] [T/O: false ][Cruise: true ] +[Elevator: -0.193221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.325317] [T/O: false ][Cruise: true ] +[Elevator: -0.183221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.250183] [T/O: false ][Cruise: true ] +[Elevator: -0.173221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.723572] [T/O: false ][Cruise: true ] +[Elevator: -0.163220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.931885] [T/O: false ][Cruise: true ] +[Elevator: -0.153220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.290771] [T/O: false ][Cruise: true ] +[Elevator: -0.143220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.832031] [T/O: false ][Cruise: true ] +[Elevator: -0.133220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.279602] [T/O: false ][Cruise: true ] +[Elevator: -0.123220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.485779] [T/O: false ][Cruise: true ] +[Elevator: -0.113220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.854919] [T/O: false ][Cruise: true ] +[Elevator: -0.103220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.508484] [T/O: false ][Cruise: true ] +[Elevator: -0.093220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.442566] [T/O: false ][Cruise: true ] +[Elevator: -0.083220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.943176] [T/O: false ][Cruise: true ] +[Elevator: -0.073220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.126648] [T/O: false ][Cruise: true ] +[Elevator: -0.063220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.636719] [T/O: false ][Cruise: true ] +[Elevator: -0.053220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.762451] [T/O: false ][Cruise: true ] +[Elevator: -0.043220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.771606] [T/O: false ][Cruise: true ] +[Elevator: -0.033220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.010925] [T/O: false ][Cruise: true ] +[Elevator: -0.023220] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.571228] [T/O: false ][Cruise: true ] +[Elevator: -0.013221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.003221] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.818176] [T/O: false ][Cruise: true ] +[Elevator: 0.006779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.811829] [T/O: false ][Cruise: true ] +[Elevator: 0.016779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.891785] [T/O: false ][Cruise: true ] +[Elevator: 0.026779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.871765] [T/O: false ][Cruise: true ] +[Elevator: 0.036780] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.717255] [T/O: false ][Cruise: true ] +[Elevator: 0.046779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.343353] [T/O: false ][Cruise: true ] +[Elevator: 0.056779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.351288] [T/O: false ][Cruise: true ] +[Elevator: 0.066779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.390503] [T/O: false ][Cruise: true ] +[Elevator: 0.076779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.506805] [T/O: false ][Cruise: true ] +[Elevator: 0.086779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.602814] [T/O: false ][Cruise: true ] +[Elevator: 0.096779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.455383] [T/O: false ][Cruise: true ] +[Elevator: 0.106779] [Roll: 0.153644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.670685] [T/O: false ][Cruise: true ] +[Elevator: 0.116779] [Roll: 0.143644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.390564] [T/O: false ][Cruise: true ] +[Elevator: 0.126779] [Roll: 0.133644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.667236] [T/O: false ][Cruise: true ] +[Elevator: 0.136779] [Roll: 0.123644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.831146] [T/O: false ][Cruise: true ] +[Elevator: 0.146779] [Roll: 0.113644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.748932] [T/O: false ][Cruise: true ] +[Elevator: 0.156779] [Roll: 0.103644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.359802] [T/O: false ][Cruise: true ] +[Elevator: 0.166780] [Roll: 0.093644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.700989] [T/O: false ][Cruise: true ] +[Elevator: 0.176780] [Roll: 0.083644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.331024] [T/O: false ][Cruise: true ] +[Elevator: 0.186780] [Roll: 0.073644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.487579] [T/O: false ][Cruise: true ] +[Elevator: 0.196780] [Roll: 0.063644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.529663] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.053644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.043644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.033644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.023644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.013644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: 0.003644] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.006356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.016356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.026356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.036356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.046356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.056356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.066356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.076356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.086356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.096356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.106356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.116356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.126356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.136356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.146356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: false ][Cruise: true ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.505271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.475271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.445271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.415271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.385271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.355271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.325271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.295271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.265271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.235271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.205271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.175271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.145271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.115271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.156356] [Yaw: -0.085271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.146356] [Yaw: -0.055271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.136356] [Yaw: -0.025271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.126356] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.116356] [Yaw: 0.034729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.106356] [Yaw: 0.064729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.096356] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.086356] [Yaw: 0.124729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.076356] [Yaw: 0.154729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.066356] [Yaw: 0.184729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.056356] [Yaw: 0.214729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.046356] [Yaw: 0.244729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.036356] [Yaw: 0.274729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.026356] [Yaw: 0.304729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.016356] [Yaw: 0.334729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: -0.006356] [Yaw: 0.364729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.003644] [Yaw: 0.394729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.013644] [Yaw: 0.424729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.023644] [Yaw: 0.454729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.033644] [Yaw: 0.484729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.043644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.053644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.063644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.073644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.083644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.093644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.103644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.113644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.123644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.133644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.143644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.206780] [Roll: 0.153644] [Yaw: 0.514729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.671005] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.426123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431143] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434647] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439447] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441317] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442833] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444063] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445189] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451595] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453808] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456127] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458372] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459394] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460077] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460413] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460402] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460091] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457531] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456568] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455500] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450754] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.448420] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445629] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438747] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435104] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431116] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423134] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418694] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411306] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408401] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405081] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406620] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408751] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411509] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413965] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416100] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417948] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.421890] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435947] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441185] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457008] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467945] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472446] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472301] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471058] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469496] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478256] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479420] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469786] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464342] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465515] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466658] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468935] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472973] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474951] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477968] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479010] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479988] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481138] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481756] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482698] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.483963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484016] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484100] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484512] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484888] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485561] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486328] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486891] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487104] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487274] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487612] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488518] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490591] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.501678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.503716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.505369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.507074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.512131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.515965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.520897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.526119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.531727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.538176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.545784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.554419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.564829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.576473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.593262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.609138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.627457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.650482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.680773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.715893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.760277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.817831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.884045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.967274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.066822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.187162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.333370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.494438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.660177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.852701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.065975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.312777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.597107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.911152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.236917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.612791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.031193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.499451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.032751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.585379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.215128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.863346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.611200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.436857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.322765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.189341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.132359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.254133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.338217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.548382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.783108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.213673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.699299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.237225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.732422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.303917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.020927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.850521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.959553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.995243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.243126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.504276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.883007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.447010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.129837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.004177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.010818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.733276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.370712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.673935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.556290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.816254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.056091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.442017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.808098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.512375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.031944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.989685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.984764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.722603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.784866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.120583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.162338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.157623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.458008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.632416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.747513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.122437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.478531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.840744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.790298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.813660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.376984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.575546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.981293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.526245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.822800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.211349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.423401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.843063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.942429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.066391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.390198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.600128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.480621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.438553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.600388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.224731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.333649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.303055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.309036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.596466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.388092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.439545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.295685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.200165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.929901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.687805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.259460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.487671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.646484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.966614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.357819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.529175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.109497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.804077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.781403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.681274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.991730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.104095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.196869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.741180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.968292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.786133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.746857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.581940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.357849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.154175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.962952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.495789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.894684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.084869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.302399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.602081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.913452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.062592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.919617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.789551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.616821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.293640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.985138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.545929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.955994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.457153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.883301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.271393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.601807] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.449791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449780] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449747] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449684] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449909] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450211] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451143] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452085] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453772] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454664] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457712] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460648] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460392] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459955] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459417] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457979] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457165] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456242] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455107] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452204] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450039] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447615] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444504] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441246] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431431] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427057] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414646] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410503] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407503] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405512] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404966] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405815] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410751] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413530] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416107] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420420] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425591] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434126] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444935] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450588] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456219] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462006] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467056] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470619] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472843] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472399] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471062] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469954] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469849] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470764] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472376] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481346] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481236] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479147] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471760] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468323] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465714] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463804] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462872] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463999] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465982] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469446] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472385] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473730] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474482] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477512] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477926] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479889] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482931] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484255] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485479] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487028] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488499] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489716] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490511] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491312] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492191] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492723] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.492189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.500229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.504942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.509850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.514305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.520111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.527599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.536467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.547535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.559507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.573967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.591314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.611858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.636549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.667681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.701132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.744154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.796240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.862944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.932001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.017229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.117416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.242523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.379223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.536289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.773842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.048664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.298388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.625668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.958426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.319469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.763203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.249838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.794750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.364475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.993719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.666088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.485023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.390881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.366924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.466143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.527346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.683613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.967613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.294956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.692657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.174522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.814445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.489086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.208973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.122684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.113712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.100311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.376732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.596809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.929726] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.387207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.014053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.734257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.462040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.456993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.499115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.319626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.523537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.892426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.184898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.830894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.931946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.157990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.564926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.029182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.685524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.331970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.063683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.904549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.705269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.599335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.672195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.778915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.243149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.622742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.907852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.033295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.527039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.701538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.293121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.509735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.713821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.718597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.345337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.764496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.960037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.215424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.253830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.947769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.094193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.206192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.774506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.881744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.637222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.336578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.494781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.421280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.108398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.163528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.447784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.389267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.305206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.529114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.477112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.595123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.792480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.657318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.513641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.311768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.971527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.784454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.466248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.139160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.734955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.186890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.565063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.950775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.282532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.782837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.973572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.176270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.271973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.247467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.173218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.076599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.914215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.656433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.300568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.791168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.328156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.797791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.152161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.435852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.917297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.299438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.640747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.822113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.866943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.736328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.741699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.542267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.216248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.758087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.232361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.813873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.233337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.567902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.837250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.041016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.152191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.130951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.192444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.135498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.039581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.901001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.555908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.267975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.788391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.336121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.730469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.021912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.244232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.404114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.469940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.458893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.381378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.214722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.988556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.726013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.402344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.013550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.607880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.136414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.623993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.073730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.440186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.795227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.104309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.436462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.762817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.969330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.197906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.448273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.673096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.932678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.230377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.542053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.906006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.291107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.709930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.164337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.641998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.191406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.778412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.413361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.125732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.887054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.733368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.661377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.670044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.765472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.958191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.265961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.658966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.190460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.856750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.575775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.421387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.448792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.586304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.749054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.007904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.458740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.024597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.911896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.728607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.715424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.997162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.112762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.311462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.639862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.236786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.912689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.709412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.646942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.438507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.491272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.671783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.932495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.317719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.086212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.895233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.669891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.438171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.270203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.138885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.028076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.308350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.490387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.774292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.826538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.216614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.949921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.680969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.083191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.027008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.172028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.415527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.407349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.161011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.044067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.059631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.960266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.980347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.729980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.794678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.866882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.844177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.202087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.018188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.246704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.391418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.067932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.744507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.581360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.758240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.251282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.682312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.980713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.021057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.155823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.264343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.523926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.588867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.645630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.552795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.730408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.408936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.182251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.079590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.741943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.374390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.048218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.859924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.504944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.097168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.772095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.930542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.968384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.951172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.015076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.107361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.022827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.956116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.887878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.532288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.154907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.770020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.388855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.968323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.685425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.265076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.531067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.672546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.914612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.938354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.894653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.800659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.704590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.591492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.524475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.289978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.078064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.756104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.306274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.891968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.241577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.455566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.592957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.723206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.799866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.837524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.785950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.679993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.502502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.303040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.086731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.887024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.525391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.133179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.698303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.254150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.710144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.143311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.535828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.868896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.179260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.473877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.741699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.980347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.179077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.361694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.540588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.680542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.808655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.925476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.040710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.151367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.273438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.377075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.471252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.573608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.680786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.792480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.910095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.040161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.173706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.332520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.501282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.665283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.858032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.070862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.361145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.649780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.967224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.316223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.705078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.130432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.606079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.095642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.605042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.169800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.762634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.437744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.142578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.956421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.847107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.735291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.753113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.853699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.993469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.334351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.697266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.097778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.569336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.060913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.775146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.510864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.475342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.489319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.273071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.165649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.135925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.169495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.622314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.950623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.327209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.861023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.293518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.962708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.771484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.860779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.996277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.198303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.477234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.846558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.227234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.238159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.341309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.679932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.749390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.635559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.847229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.248779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.272827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.711975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.830017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.190186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.356934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.679382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.541687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.741455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.047241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.448547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.868958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.433716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.887878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.702026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.356201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.537659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.382507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.573669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.585144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.594604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.791687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.849731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.987732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.882507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.667542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.481201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.421082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.206055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.133484] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.851318] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.416443] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.841858] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.409058] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.836243] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.935852] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.884399] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.033325] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.117554] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.864868] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.010742] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.045654] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.924561] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.723145] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.786133] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.601563] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.242432] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.937866] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.470215] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.668457] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.226929] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.625000] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.689453] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.698120] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.555176] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.296509] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.908447] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.348389] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.702759] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.893799] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.885376] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.479736] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.933838] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.227173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.353271] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.315063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.098022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.710449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.156982] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.477783] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.571899] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.454956] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.790039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.326904] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.602783] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.626587] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.544556] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.354370] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.097290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.625732] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.050537] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.423218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.736450] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.880493] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.864502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.621460] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.221558] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.618408] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.017334] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.213867] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.523193] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.071045] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.076050] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.140381] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.169189] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.537537] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.409485] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.972778] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.540039] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.917908] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.423096] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.611328] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.783325] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.059937] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.227295] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.960388] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.136230] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.178528] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.172546] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.128174] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.918335] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.854919] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.781311] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.235962] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.674622] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.050598] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.067810] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.910034] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.959106] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.545227] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.361145] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.403931] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.902222] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.601685] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.738770] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.219849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.164124] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.466248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.206482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.411377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.025574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.152100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.744751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.620422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.540649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.928650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.978271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.326477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.307373] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.692627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.529175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.359436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.830872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.605713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.968567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.715637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.405212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.715576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.792419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.054871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.743652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.218933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.198853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.601929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.693604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.816833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.110779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.907410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.568359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.268677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.029175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.424438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.539673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.507446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.265869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.241089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.571167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.604126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.908813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.038452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.331055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.766846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.909912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.459106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.433105] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.679443] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.270386] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.279663] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.461304] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.203125] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.084229] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.055786] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.808350] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.481812] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.163086] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.828613] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.270996] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.410645] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.770020] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.328003] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.631836] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.437866] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.031006] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.942261] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.932495] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.486328] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.655029] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.977905] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.927856] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.983154] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.606934] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.963501] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.619019] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.554932] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.591309] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.348877] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.344604] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.329346] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.000000] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.624390] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.780396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.975098] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.348267] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.524048] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.290039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.767578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.244019] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.775269] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.041992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.178101] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.121582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.179077] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.896606] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.693970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.308838] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.894653] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.254639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.369507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.233887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.836304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.222290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1471.352905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.235229] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.839600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.216919] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.364746] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.276855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.950684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.402954] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1471.659912] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.541382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.235352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.714966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.148315] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.209717] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.166748] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.012207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.457275] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.660034] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.942749] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.144165] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.944824] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.736084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.188721] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.227905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.057007] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.634155] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.160767] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.451050] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.528442] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.316162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.940552] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.985962] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.270142] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.147827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.630981] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.952148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.807373] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.694214] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.508423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.901733] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.633423] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.684448] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.040283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.199951] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.088989] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.666748] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.122192] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.145630] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.447632] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.123291] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.576782] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.512695] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.704590] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.684570] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.147705] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.795166] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.729492] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.765991] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.325562] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.824829] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.183105] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.412720] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.315796] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.203369] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.661133] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.232300] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.994751] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.948120] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.983337] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.224365] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.512207] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.292114] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.174011] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.014648] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.604431] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.436829] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.455078] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.718323] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.922485] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.061279] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.175903] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.080566] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.717407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.941406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.180359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.594482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.546936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.802368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.240479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.780396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.058777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.999146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.743896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.411133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.745300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.076782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.355591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.381775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.270203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.851135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.103210] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.827576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.184937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.287537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.800232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.465210] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.653931] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.106934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.112305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.469666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.779846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.356689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.767029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.625183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.562378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.110107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.964172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.048035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.089722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.313293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.315918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.280884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.090881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.005005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.467773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.410461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.099182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.084595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.823730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.557617] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.402832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.329224] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.591187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.279175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.398438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.770996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.758667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.019897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.963135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.940430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.395752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.221191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.803711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.978882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.933960] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.077148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.036621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.698608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.603638] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.596313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.383911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.483765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.256836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.256714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.734131] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.170532] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.840576] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.719849] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.917603] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.497314] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.957275] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.873291] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.487793] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.925781] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.188599] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.414063] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.077026] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.791626] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.674194] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.685913] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.841675] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.731323] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.005127] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.777222] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.639771] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.922729] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.585083] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.082520] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.773560] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1500.854248] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.060547] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.645386] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.353760] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.331299] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1529.841309] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.386230] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.151855] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.856934] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.662842] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.500610] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.919678] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.094116] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.105103] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.857910] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.335938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.924683] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.186523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.636597] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.044312] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.000244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.726685] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.411987] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.697388] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.126831] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.212036] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.173218] [T/O: false ][Cruise: true ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.656189] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.782974] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.804123] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.255051] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.148499] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.336288] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.073471] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.714767] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.487259] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.872253] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.385651] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.598602] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.004440] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.202179] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.516464] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.783249] [T/O: true ][Cruise: false ] +[Elevator: 0.275908] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.817627] [T/O: true ][Cruise: false ] +[Elevator: -0.509483] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.386383] [T/O: true ][Cruise: false ] +[Elevator: -0.509483] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.565765] [T/O: true ][Cruise: false ] +[Elevator: 0.016202] [Roll: -0.937896] [Yaw: -0.187579] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.457855] [T/O: true ][Cruise: false ] +[Elevator: 0.228476] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.895233] [T/O: true ][Cruise: false ] +[Elevator: 0.156646] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.711426] [T/O: true ][Cruise: false ] +[Elevator: 0.131206] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.641205] [T/O: true ][Cruise: false ] +[Elevator: 0.417248] [Roll: 0.828177] [Yaw: 0.165635] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.150146] [T/O: true ][Cruise: false ] +[Elevator: 0.417248] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.453918] [T/O: true ][Cruise: false ] +[Elevator: 0.438343] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.085022] [T/O: true ][Cruise: false ] +[Elevator: 0.459643] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.235107] [T/O: true ][Cruise: false ] +[Elevator: 0.459643] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.164795] [T/O: true ][Cruise: false ] +[Elevator: 0.438343] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.949127] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.776703] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.295532] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.627106] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.620880] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.196716] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.228973] [T/O: true ][Cruise: false ] +[Elevator: 0.406779] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.695862] [T/O: true ][Cruise: false ] +[Elevator: 0.266280] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.436066] [T/O: true ][Cruise: false ] +[Elevator: 0.191886] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.904144] [T/O: true ][Cruise: false ] +[Elevator: 0.182944] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.988037] [T/O: true ][Cruise: false ] +[Elevator: 0.182944] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.152252] [T/O: true ][Cruise: false ] +[Elevator: 0.182944] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.612488] [T/O: true ][Cruise: false ] +[Elevator: 0.182944] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.012512] [T/O: true ][Cruise: false ] +[Elevator: 0.165321] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.980011] [T/O: true ][Cruise: false ] +[Elevator: 0.061163] [Roll: 0.756593] [Yaw: 0.151319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.944885] [T/O: true ][Cruise: false ] +[Elevator: 0.071163] [Roll: 0.756593] [Yaw: 0.181319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.739838] [T/O: true ][Cruise: false ] +[Elevator: 0.081163] [Roll: 0.756593] [Yaw: 0.211319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.511230] [T/O: true ][Cruise: false ] +[Elevator: 0.091163] [Roll: 0.756593] [Yaw: 0.241319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.147491] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.271319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.161713] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.301319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.982758] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.331319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.796234] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.361319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.381165] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.391319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.043518] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.756593] [Yaw: 0.421319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.939758] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.746593] [Yaw: 0.451319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.099701] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.736593] [Yaw: 0.481319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.418732] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.726593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.336853] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.716593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.795929] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.706593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.230988] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.696593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.715729] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.686593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.284515] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.676593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.897919] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.666593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.741333] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.656593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.803467] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.646593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.818481] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.636593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.736694] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.626593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.222107] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.616593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.083374] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.606593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.146423] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.596593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.416687] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.586593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.328064] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.576593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.775085] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.566593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.201599] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.556593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.215820] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.546593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.561462] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.536593] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.727417] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.526594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.808105] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.516594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.914612] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.506594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.776550] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.496594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.487427] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.486594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.780457] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.476594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.867004] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.466594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.898621] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.456594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.504089] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.446594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.755676] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.436594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.753540] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.426594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.174011] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.416594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.086609] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.406594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.371399] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.396594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.093201] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.386594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.478210] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.376594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.344910] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.366594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.685852] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.356594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.468750] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.346594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.804871] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.336594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.209045] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.326594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.857300] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.316594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.560364] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.306594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.619629] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.296594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.890686] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.286594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.384521] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.276594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.258118] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.266594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.388123] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.256594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.587036] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.246594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.309265] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.236594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.852966] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.226594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.516296] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.216594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.877563] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.206594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.191895] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.196594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.957886] [T/O: true ][Cruise: false ] +[Elevator: 0.101163] [Roll: 0.186594] [Yaw: 0.511319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.976135] [T/O: true ][Cruise: false ] +[Elevator: 0.122932] [Roll: 0.876603] [Yaw: 0.175321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.763672] [T/O: true ][Cruise: false ] +[Elevator: 0.122932] [Roll: 0.876603] [Yaw: 0.175321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.011230] [T/O: true ][Cruise: false ] +[Elevator: 0.122932] [Roll: 0.876603] [Yaw: 0.175321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.209595] [T/O: true ][Cruise: false ] +[Elevator: 0.122932] [Roll: 0.876603] [Yaw: 0.175321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.248352] [T/O: true ][Cruise: false ] +[Elevator: -0.736605] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.936707] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.691833] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.363403] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.537659] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.696411] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.342590] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.895386] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.938904] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.295563] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.349304] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.039368] [T/O: true ][Cruise: false ] +[Elevator: -0.153283] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.573761] [T/O: true ][Cruise: false ] +[Elevator: 0.524717] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.010834] [T/O: true ][Cruise: false ] +[Elevator: 0.524717] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.557098] [T/O: true ][Cruise: false ] +[Elevator: 0.659726] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.539490] [T/O: true ][Cruise: false ] +[Elevator: 0.659726] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.653351] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.466675] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.149170] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.374100] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: 0.625401] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.373367] [T/O: true ][Cruise: false ] +[Elevator: -0.148169] [Roll: 0.017222] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.609606] [T/O: true ][Cruise: false ] +[Elevator: -0.118266] [Roll: -0.007224] [Yaw: 0.000124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.005484] [T/O: true ][Cruise: false ] +[Elevator: -0.093126] [Roll: -0.086412] [Yaw: -0.018662] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.359550] [T/O: true ][Cruise: false ] +[Elevator: -0.090196] [Roll: -0.121569] [Yaw: -0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.716896] [T/O: true ][Cruise: false ] +[Elevator: -0.095882] [Roll: -0.121569] [Yaw: -0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.055075] [T/O: true ][Cruise: false ] +[Elevator: -0.191622] [Roll: -0.140285] [Yaw: -0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.406094] [T/O: true ][Cruise: false ] +[Elevator: -0.240837] [Roll: -0.151386] [Yaw: -0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.765219] [T/O: true ][Cruise: false ] +[Elevator: -0.253917] [Roll: -0.152941] [Yaw: -0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.154921] [T/O: true ][Cruise: false ] +[Elevator: -0.300122] [Roll: -0.160478] [Yaw: -0.034988] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.514658] [T/O: true ][Cruise: false ] +[Elevator: -0.309636] [Roll: -0.160784] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.907898] [T/O: true ][Cruise: false ] +[Elevator: -0.309804] [Roll: -0.160784] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.300560] [T/O: true ][Cruise: false ] +[Elevator: -0.309804] [Roll: -0.160784] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.755383] [T/O: true ][Cruise: false ] +[Elevator: -0.302093] [Roll: -0.168495] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.168621] [T/O: true ][Cruise: false ] +[Elevator: -0.271192] [Roll: -0.168627] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.659367] [T/O: true ][Cruise: false ] +[Elevator: -0.193971] [Roll: -0.145706] [Yaw: -0.026245] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.130146] [T/O: true ][Cruise: false ] +[Elevator: -0.155917] [Roll: -0.101015] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.541527] [T/O: true ][Cruise: false ] +[Elevator: -0.134353] [Roll: -0.075869] [Yaw: -0.016026] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.004963] [T/O: true ][Cruise: false ] +[Elevator: -0.101117] [Roll: -0.031555] [Yaw: -0.004948] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.343777] [T/O: true ][Cruise: false ] +[Elevator: -0.081521] [Roll: -0.025787] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.643417] [T/O: true ][Cruise: false ] +[Elevator: -0.074510] [Roll: -0.009947] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.885738] [T/O: true ][Cruise: false ] +[Elevator: -0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.073524] [T/O: true ][Cruise: false ] +[Elevator: -0.084243] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.250305] [T/O: true ][Cruise: false ] +[Elevator: -0.109901] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.440414] [T/O: true ][Cruise: false ] +[Elevator: -0.132645] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.643166] [T/O: true ][Cruise: false ] +[Elevator: -0.144902] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.849751] [T/O: true ][Cruise: false ] +[Elevator: -0.152902] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.076042] [T/O: true ][Cruise: false ] +[Elevator: -0.172060] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.371445] [T/O: true ][Cruise: false ] +[Elevator: -0.197816] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.670189] [T/O: true ][Cruise: false ] +[Elevator: -0.214611] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.056030] [T/O: true ][Cruise: false ] +[Elevator: -0.250243] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.480957] [T/O: true ][Cruise: false ] +[Elevator: -0.288374] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.931557] [T/O: true ][Cruise: false ] +[Elevator: -0.319741] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.407497] [T/O: true ][Cruise: false ] +[Elevator: -0.352441] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.936428] [T/O: true ][Cruise: false ] +[Elevator: -0.364350] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.494522] [T/O: true ][Cruise: false ] +[Elevator: -0.364706] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.065796] [T/O: true ][Cruise: false ] +[Elevator: -0.364706] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.612572] [T/O: true ][Cruise: false ] +[Elevator: -0.365384] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.160934] [T/O: true ][Cruise: false ] +[Elevator: -0.372549] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.694092] [T/O: true ][Cruise: false ] +[Elevator: -0.372549] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.188148] [T/O: true ][Cruise: false ] +[Elevator: -0.372549] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.647469] [T/O: true ][Cruise: false ] +[Elevator: -0.372549] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.077034] [T/O: true ][Cruise: false ] +[Elevator: -0.326215] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.439594] [T/O: true ][Cruise: false ] +[Elevator: -0.128480] [Roll: 0.011189] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.699364] [T/O: true ][Cruise: false ] +[Elevator: -0.019037] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.876316] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.956097] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.947281] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.852940] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.697018] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.489597] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.257401] [T/O: true ][Cruise: false ] +[Elevator: -0.007630] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.030567] [T/O: true ][Cruise: false ] +[Elevator: 0.069089] [Roll: 0.030224] [Yaw: 0.006045] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.842896] [T/O: true ][Cruise: false ] +[Elevator: 0.229961] [Roll: 0.058824] [Yaw: 0.011765] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.702309] [T/O: true ][Cruise: false ] +[Elevator: 0.246089] [Roll: 0.058824] [Yaw: 0.011765] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.631813] [T/O: true ][Cruise: false ] +[Elevator: 0.380874] [Roll: 0.028285] [Yaw: 0.004130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.660252] [T/O: true ][Cruise: false ] +[Elevator: 0.518269] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.804634] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.110886] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.640568] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.315693] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.258572] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.494476] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.143467] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.148232] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.710442] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.479961] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.731487] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.693100] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.363419] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.182961] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.680313] [T/O: true ][Cruise: false ] +[Elevator: 0.521569] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.945114] [T/O: true ][Cruise: false ] +[Elevator: 0.526838] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.097130] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.868675] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.376007] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.581337] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.040215] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.748680] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.664291] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.067368] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.097214] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.236893] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.791367] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.242630] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.543121] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.329330] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.325211] [T/O: true ][Cruise: false ] +[Elevator: 0.537255] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.092712] [T/O: true ][Cruise: false ] +[Elevator: 0.542594] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.887131] [T/O: true ][Cruise: false ] +[Elevator: 0.572160] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.306107] [T/O: true ][Cruise: false ] +[Elevator: 0.611425] [Roll: -0.001065] [Yaw: -0.001065] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.137238] [T/O: true ][Cruise: false ] +[Elevator: 0.652265] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.153656] [T/O: true ][Cruise: false ] +[Elevator: 0.670588] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.754730] [T/O: true ][Cruise: false ] +[Elevator: 0.670588] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.036438] [T/O: true ][Cruise: false ] +[Elevator: 0.670588] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.660004] [T/O: true ][Cruise: false ] +[Elevator: 0.670588] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.227997] [T/O: true ][Cruise: false ] +[Elevator: 0.670588] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.806732] [T/O: true ][Cruise: false ] +[Elevator: 0.680885] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.964783] [T/O: true ][Cruise: false ] +[Elevator: 0.706892] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.499420] [T/O: true ][Cruise: false ] +[Elevator: 0.741577] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.378784] [T/O: true ][Cruise: false ] +[Elevator: 0.776705] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.446320] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.509949] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.239807] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.980499] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.144623] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.160278] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.164307] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.622375] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.055420] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.988220] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.970062] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.768066] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.391541] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.934570] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.810577] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.443146] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.187164] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.693390] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.421082] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.237183] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.721436] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.492371] [T/O: true ][Cruise: false ] +[Elevator: 0.788235] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.752165] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.479919] [T/O: true ][Cruise: false ] +[Elevator: 0.387200] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.659851] [T/O: true ][Cruise: false ] +[Elevator: -0.228363] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.479980] [T/O: true ][Cruise: false ] +[Elevator: -0.461302] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.460693] [T/O: true ][Cruise: false ] +[Elevator: -0.466667] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.070984] [T/O: true ][Cruise: false ] +[Elevator: -0.474606] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.924438] [T/O: true ][Cruise: false ] +[Elevator: -0.486163] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.596252] [T/O: true ][Cruise: false ] +[Elevator: -0.490196] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.639404] [T/O: true ][Cruise: false ] +[Elevator: -0.490196] [Roll: 0.027451] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.186157] [T/O: true ][Cruise: false ] +[Elevator: -0.476983] [Roll: 0.071493] [Yaw: 0.012730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.428223] [T/O: true ][Cruise: false ] +[Elevator: -0.369698] [Roll: 0.392380] [Yaw: 0.076907] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.333801] [T/O: true ][Cruise: false ] +[Elevator: -0.289176] [Roll: 0.630510] [Yaw: 0.126510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.719971] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.639216] [Yaw: 0.129412] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.720276] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.666265] [Yaw: 0.134822] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.306152] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.700573] [Yaw: 0.142790] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.558167] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.745421] [Yaw: 0.151034] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.448730] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.763238] [Yaw: 0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.006592] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.764706] [Yaw: 0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.246277] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.764706] [Yaw: 0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.060303] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.764706] [Yaw: 0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.509338] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.764706] [Yaw: 0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.522766] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.769247] [Yaw: 0.153849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.500183] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.806171] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.831116] [T/O: true ][Cruise: false ] +[Elevator: -0.286274] [Roll: 0.821701] [Yaw: 0.162877] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.943787] [T/O: true ][Cruise: false ] +[Elevator: -0.288744] [Roll: 0.834861] [Yaw: 0.168628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.763428] [T/O: true ][Cruise: false ] +[Elevator: -0.294118] [Roll: 0.856622] [Yaw: 0.171448] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.277954] [T/O: true ][Cruise: false ] +[Elevator: -0.294118] [Roll: 0.877244] [Yaw: 0.176471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.214661] [T/O: true ][Cruise: false ] +[Elevator: -0.294118] [Roll: 0.890196] [Yaw: 0.176471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.733765] [T/O: true ][Cruise: false ] +[Elevator: -0.294118] [Roll: 0.890196] [Yaw: 0.176471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.132935] [T/O: true ][Cruise: false ] +[Elevator: -0.275223] [Roll: 0.890196] [Yaw: 0.176471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.937073] [T/O: true ][Cruise: false ] +[Elevator: -0.227583] [Roll: 0.911699] [Yaw: 0.183638] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.137939] [T/O: true ][Cruise: false ] +[Elevator: -0.106754] [Roll: 0.884719] [Yaw: 0.175475] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.187988] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.701904] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.729858] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.289001] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.410919] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.664429] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.391296] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.803922] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.779938] [T/O: true ][Cruise: false ] +[Elevator: 0.004014] [Roll: 0.799954] [Yaw: 0.160784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.045044] [T/O: true ][Cruise: false ] +[Elevator: 0.056624] [Roll: 0.763453] [Yaw: 0.152628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.453064] [T/O: true ][Cruise: false ] +[Elevator: 0.175103] [Roll: 0.675536] [Yaw: 0.133539] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.369232] [T/O: true ][Cruise: false ] +[Elevator: 0.278931] [Roll: 0.601956] [Yaw: 0.118136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.523712] [T/O: true ][Cruise: false ] +[Elevator: 0.309804] [Roll: 0.584314] [Yaw: 0.113726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.530640] [T/O: true ][Cruise: false ] +[Elevator: 0.309804] [Roll: 0.584314] [Yaw: 0.113726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.617889] [T/O: true ][Cruise: false ] +[Elevator: 0.313033] [Roll: 0.582699] [Yaw: 0.113726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.160614] [T/O: true ][Cruise: false ] +[Elevator: 0.342576] [Roll: 0.568627] [Yaw: 0.113726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.250641] [T/O: true ][Cruise: false ] +[Elevator: 0.362083] [Roll: 0.568255] [Yaw: 0.113726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.284180] [T/O: true ][Cruise: false ] +[Elevator: 0.474942] [Roll: 0.558837] [Yaw: 0.113239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.768372] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.852417] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.528087] [Yaw: 0.105642] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.328918] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.437688] [Yaw: 0.089288] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.532379] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.394281] [Yaw: 0.080555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.505829] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.388235] [Yaw: 0.074510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.377777] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.388235] [Yaw: 0.074510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.826294] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.388235] [Yaw: 0.074510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.842285] [T/O: true ][Cruise: false ] +[Elevator: 0.600000] [Roll: 0.383891] [Yaw: 0.074510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.811279] [T/O: true ][Cruise: false ] +[Elevator: 0.586833] [Roll: 0.301387] [Yaw: 0.061342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.395355] [T/O: true ][Cruise: false ] +[Elevator: 0.576471] [Roll: 0.239216] [Yaw: 0.050980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.242615] [T/O: true ][Cruise: false ] +[Elevator: 0.576471] [Roll: 0.234152] [Yaw: 0.045917] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.540329] [T/O: true ][Cruise: false ] +[Elevator: 0.540391] [Roll: 0.184984] [Yaw: 0.037983] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.811905] [T/O: true ][Cruise: false ] +[Elevator: 0.516703] [Roll: 0.151054] [Yaw: 0.030429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.934158] [T/O: true ][Cruise: false ] +[Elevator: 0.513726] [Roll: 0.145098] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.379471] [T/O: true ][Cruise: false ] +[Elevator: 0.432674] [Roll: 0.145098] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.865189] [T/O: true ][Cruise: false ] +[Elevator: 0.225714] [Roll: 0.138244] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.783783] [T/O: true ][Cruise: false ] +[Elevator: 0.119095] [Roll: 0.122545] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.114761] [T/O: true ][Cruise: false ] +[Elevator: 0.097209] [Roll: 0.121735] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.416458] [T/O: true ][Cruise: false ] +[Elevator: -0.019608] [Roll: 0.145098] [Yaw: 0.027451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.288345] [T/O: true ][Cruise: false ] +[Elevator: -0.019843] [Roll: 0.145568] [Yaw: 0.027569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.324966] [T/O: true ][Cruise: false ] +[Elevator: -0.042558] [Roll: 0.197658] [Yaw: 0.039532] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.834106] [T/O: true ][Cruise: false ] +[Elevator: -0.130165] [Roll: 0.453994] [Yaw: 0.090950] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.301407] [T/O: true ][Cruise: false ] +[Elevator: -0.137255] [Roll: 0.482353] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.343994] [T/O: true ][Cruise: false ] +[Elevator: -0.137255] [Roll: 0.487231] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.651825] [T/O: true ][Cruise: false ] +[Elevator: -0.139691] [Roll: 0.513191] [Yaw: 0.100475] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.537148] [T/O: true ][Cruise: false ] +[Elevator: -0.145098] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.934029] [T/O: true ][Cruise: false ] +[Elevator: -0.145098] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.720177] [T/O: true ][Cruise: false ] +[Elevator: -0.145098] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.988571] [T/O: true ][Cruise: false ] +[Elevator: -0.145098] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.627365] [T/O: true ][Cruise: false ] +[Elevator: -0.138712] [Roll: 0.529412] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.613510] [T/O: true ][Cruise: false ] +[Elevator: -0.045230] [Roll: 0.515254] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.816589] [T/O: true ][Cruise: false ] +[Elevator: -0.020214] [Roll: 0.513726] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.667191] [T/O: true ][Cruise: false ] +[Elevator: -0.019608] [Roll: 0.513726] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.775711] [T/O: true ][Cruise: false ] +[Elevator: -0.019511] [Roll: 0.513726] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.915432] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.513726] [Yaw: 0.105882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.203049] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.512818] [Yaw: 0.104975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.836174] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.551357] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.757942] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.143478] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.728043] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.531330] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.582291] [T/O: true ][Cruise: false ] +[Elevator: -0.011765] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.857887] [T/O: true ][Cruise: false ] +[Elevator: -0.006155] [Roll: 0.505882] [Yaw: 0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.311127] [T/O: true ][Cruise: false ] +[Elevator: 0.107694] [Roll: 0.370769] [Yaw: 0.074541] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.984020] [T/O: true ][Cruise: false ] +[Elevator: 0.156912] [Roll: 0.295956] [Yaw: 0.060760] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.830612] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.843300] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.042225] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.410084] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.946117] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.661808] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.547188] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.581470] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.718754] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.039700] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.475983] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.119770] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.887878] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.790096] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.717384] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.882950] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.018860] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.340950] [T/O: true ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.286275] [Yaw: 0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.633873] [T/O: true ][Cruise: false ] +[Elevator: 0.173419] [Roll: 0.216784] [Yaw: 0.046189] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.835403] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.200000] [Yaw: 0.043137] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.987625] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.200000] [Yaw: 0.043137] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.098724] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.200000] [Yaw: 0.043137] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.284958] [T/O: true ][Cruise: false ] +[Elevator: 0.216098] [Roll: 0.102180] [Yaw: 0.018785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.311958] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.025114] [Yaw: 0.002225] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.409515] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.068719] [Yaw: -0.013744] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.540001] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.105147] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.552673] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.149021] [Yaw: -0.029692] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.292160] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.168627] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.014572] [T/O: true ][Cruise: false ] +[Elevator: 0.281349] [Roll: -0.139718] [Yaw: -0.028067] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.427254] [T/O: true ][Cruise: false ] +[Elevator: 0.339024] [Roll: -0.099577] [Yaw: -0.019915] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.722679] [T/O: true ][Cruise: false ] +[Elevator: 0.398020] [Roll: -0.082353] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.855675] [T/O: true ][Cruise: false ] +[Elevator: 0.557121] [Roll: -0.082353] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.829529] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.082353] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.673592] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.079589] [Yaw: -0.016844] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.278290] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.052282] [Yaw: -0.008986] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.770485] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.114784] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.294518] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.365150] [T/O: true ][Cruise: false ] +[Elevator: 0.592157] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.326416] [T/O: true ][Cruise: false ] +[Elevator: 0.585154] [Roll: -0.039776] [Yaw: -0.010924] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.188370] [T/O: true ][Cruise: false ] +[Elevator: 0.584314] [Roll: -0.145772] [Yaw: -0.027619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.966759] [T/O: true ][Cruise: false ] +[Elevator: 0.582269] [Roll: -0.185333] [Yaw: -0.037339] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.668350] [T/O: true ][Cruise: false ] +[Elevator: 0.560784] [Roll: -0.279839] [Yaw: -0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.300362] [T/O: true ][Cruise: false ] +[Elevator: 0.560784] [Roll: -0.286274] [Yaw: -0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.864540] [T/O: true ][Cruise: false ] +[Elevator: 0.615824] [Roll: -0.214035] [Yaw: -0.045064] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.377586] [T/O: true ][Cruise: false ] +[Elevator: 0.733743] [Roll: -0.074100] [Yaw: -0.015584] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.837936] [T/O: true ][Cruise: false ] +[Elevator: 0.780392] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.261124] [T/O: true ][Cruise: false ] +[Elevator: 0.807379] [Roll: -0.005862] [Yaw: 0.001476] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.657646] [T/O: true ][Cruise: false ] +[Elevator: 0.857087] [Roll: 0.022661] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.031464] [T/O: true ][Cruise: false ] +[Elevator: 0.873687] [Roll: 0.034471] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.406807] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.819420] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.250420] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.725685] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.229866] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.805862] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.465340] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.214836] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.036850] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.930954] [T/O: true ][Cruise: false ] +[Elevator: 0.890196] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.884033] [T/O: true ][Cruise: false ] +[Elevator: 0.896423] [Roll: 0.029067] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.904007] [T/O: true ][Cruise: false ] +[Elevator: 0.950374] [Roll: 0.020909] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.989510] [T/O: true ][Cruise: false ] +[Elevator: 0.997922] [Roll: 0.004753] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.130104] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.308281] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.517456] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.748810] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.992737] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.221718] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.422440] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.595909] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.717957] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.781647] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.771881] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.662048] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.011009] [Yaw: 0.000811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.433464] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.289533] [Yaw: -0.056338] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.095940] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.706882] [Yaw: -0.139808] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.612556] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.826237] [Yaw: -0.162964] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.977989] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.976121] [Yaw: -0.194030] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.197678] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.271118] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.189560] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.962914] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.613258] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.237518] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.850037] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.435875] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.036514] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.661674] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.330597] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.227287] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.333473] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.679543] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.304184] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.300362] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.676888] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.502113] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.926186] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.901237] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.492393] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.865974] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.324226] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.934540] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.581894] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.625130] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.774429] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.066612] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.750900] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.021904] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.699326] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.367538] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.649628] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.070480] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.554428] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.389832] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.485504] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.879272] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.501526] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.057312] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.702820] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.363785] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.910248] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.398407] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.185211] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.386505] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.194580] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.813049] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.987854] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.837372] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.701294] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.857452] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.697479] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.443542] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.731232] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.513458] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.082642] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.734039] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.109497] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.332428] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.101105] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.887543] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.472015] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.986267] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.198639] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.877716] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.466797] [T/O: true ][Cruise: false ] +[Elevator: 1.000000] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.204773] [T/O: true ][Cruise: false ] +[Elevator: 0.019293] [Roll: -0.454395] [Yaw: -0.089498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.994110] [T/O: true ][Cruise: false ] +[Elevator: -0.803922] [Roll: -0.090196] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.588226] [T/O: true ][Cruise: false ] +[Elevator: -0.802732] [Roll: -0.090196] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.615540] [T/O: true ][Cruise: false ] +[Elevator: -0.782396] [Roll: -0.093617] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.048615] [T/O: true ][Cruise: false ] +[Elevator: -0.764706] [Roll: -0.098039] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.183807] [T/O: true ][Cruise: false ] +[Elevator: -0.759015] [Roll: -0.103730] [Yaw: -0.019608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.810608] [T/O: true ][Cruise: false ] +[Elevator: -0.756863] [Roll: -0.118021] [Yaw: -0.025677] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.124023] [T/O: true ][Cruise: false ] +[Elevator: -0.742794] [Roll: -0.283365] [Yaw: -0.055589] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.748138] [T/O: true ][Cruise: false ] +[Elevator: -0.719733] [Roll: -0.645062] [Yaw: -0.130303] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.989441] [T/O: true ][Cruise: false ] +[Elevator: -0.710276] [Roll: -0.759516] [Yaw: -0.151997] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.738098] [T/O: true ][Cruise: false ] +[Elevator: -0.709804] [Roll: -0.780044] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.093750] [T/O: true ][Cruise: false ] +[Elevator: -0.707987] [Roll: -0.780998] [Yaw: -0.153244] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.005585] [T/O: true ][Cruise: false ] +[Elevator: -0.658964] [Roll: -0.797654] [Yaw: -0.161099] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.549896] [T/O: true ][Cruise: false ] +[Elevator: -0.463340] [Roll: -0.878625] [Yaw: -0.177058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.731262] [T/O: true ][Cruise: false ] +[Elevator: -0.326439] [Roll: -0.929062] [Yaw: -0.184264] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.571045] [T/O: true ][Cruise: false ] +[Elevator: -0.299996] [Roll: -0.927447] [Yaw: -0.183921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.001465] [T/O: true ][Cruise: false ] +[Elevator: -0.264150] [Roll: -0.891601] [Yaw: -0.176751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.181915] [T/O: true ][Cruise: false ] +[Elevator: -0.177956] [Roll: -0.805407] [Yaw: -0.161054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.882355] [T/O: true ][Cruise: false ] +[Elevator: -0.079753] [Roll: -0.674346] [Yaw: -0.136512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.418579] [T/O: true ][Cruise: false ] +[Elevator: -0.029151] [Roll: -0.594829] [Yaw: -0.122054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.204041] [T/O: true ][Cruise: false ] +[Elevator: 0.005429] [Roll: -0.533938] [Yaw: -0.105279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.852966] [T/O: true ][Cruise: false ] +[Elevator: 0.045987] [Roll: -0.447317] [Yaw: -0.089382] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.692169] [T/O: true ][Cruise: false ] +[Elevator: 0.119815] [Roll: -0.365317] [Yaw: -0.071160] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.026276] [T/O: true ][Cruise: false ] +[Elevator: 0.207583] [Roll: -0.304117] [Yaw: -0.058824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.978760] [T/O: true ][Cruise: false ] +[Elevator: 0.246954] [Roll: -0.281823] [Yaw: -0.056598] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.455566] [T/O: true ][Cruise: false ] +[Elevator: 0.297627] [Roll: -0.267750] [Yaw: -0.050980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.435120] [T/O: true ][Cruise: false ] +[Elevator: 0.317647] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.027344] [T/O: true ][Cruise: false ] +[Elevator: 0.317647] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.189087] [T/O: true ][Cruise: false ] +[Elevator: 0.317647] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.954346] [T/O: true ][Cruise: false ] +[Elevator: 0.292155] [Roll: -0.293336] [Yaw: -0.056079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.353058] [T/O: true ][Cruise: false ] +[Elevator: 0.199972] [Roll: -0.447107] [Yaw: -0.091515] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.478088] [T/O: true ][Cruise: false ] +[Elevator: 0.149614] [Roll: -0.530030] [Yaw: -0.104979] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.303589] [T/O: true ][Cruise: false ] +[Elevator: 0.103234] [Roll: -0.620983] [Yaw: -0.126814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.288605] [T/O: true ][Cruise: false ] +[Elevator: 0.077757] [Roll: -0.678698] [Yaw: -0.136173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.783142] [T/O: true ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.706478] [Yaw: -0.143989] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.434082] [T/O: true ][Cruise: false ] +[Elevator: 0.060440] [Roll: -0.716839] [Yaw: -0.145098] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.147308] [T/O: true ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.717647] [Yaw: -0.145098] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.805115] [T/O: true ][Cruise: false ] +[Elevator: 0.061652] [Roll: -0.713405] [Yaw: -0.143684] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.198914] [T/O: true ][Cruise: false ] +[Elevator: 0.088895] [Roll: -0.636577] [Yaw: -0.125267] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.545013] [T/O: true ][Cruise: false ] +[Elevator: 0.127894] [Roll: -0.496394] [Yaw: -0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.727478] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.482353] [Yaw: -0.098039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.782654] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.472856] [Yaw: -0.093291] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.675232] [T/O: true ][Cruise: false ] +[Elevator: 0.126508] [Roll: -0.455920] [Yaw: -0.090196] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.504120] [T/O: true ][Cruise: false ] +[Elevator: 0.121569] [Roll: -0.380576] [Yaw: -0.077395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.268311] [T/O: true ][Cruise: false ] +[Elevator: 0.136409] [Roll: -0.327606] [Yaw: -0.067090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.984253] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.711761] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.352417] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.431000] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.388077] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.602081] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.952637] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.720215] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.387833] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:0.984439] [Flaps: 0.000000] [Data Ref: 171.653488] [T/O: true ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:0.942779] [Flaps: 0.000000] [Data Ref: 162.203278] [T/O: true ][Cruise: false ] +[Elevator: 0.141609] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:0.896519] [Flaps: 0.000000] [Data Ref: 152.137985] [T/O: true ][Cruise: false ] +[Elevator: 0.208511] [Roll: -0.315519] [Yaw: -0.064672] [Throttle:0.851777] [Flaps: 0.000000] [Data Ref: 143.468140] [T/O: true ][Cruise: false ] +[Elevator: 0.345134] [Roll: -0.264175] [Yaw: -0.053913] [Throttle:0.806103] [Flaps: 0.000000] [Data Ref: 134.358566] [T/O: true ][Cruise: false ] +[Elevator: 0.432792] [Roll: -0.177495] [Yaw: -0.036772] [Throttle:0.758966] [Flaps: 0.000000] [Data Ref: 124.803413] [T/O: true ][Cruise: false ] +[Elevator: 0.516585] [Roll: -0.110441] [Yaw: -0.023742] [Throttle:0.712933] [Flaps: 0.000000] [Data Ref: 115.442467] [T/O: true ][Cruise: false ] +[Elevator: 0.547035] [Roll: -0.098039] [Yaw: -0.019608] [Throttle:0.663301] [Flaps: 0.000000] [Data Ref: 106.577400] [T/O: true ][Cruise: false ] +[Elevator: 0.537259] [Roll: -0.092812] [Yaw: -0.019608] [Throttle:0.618308] [Flaps: 0.000000] [Data Ref: 97.993774] [T/O: true ][Cruise: false ] +[Elevator: 0.511606] [Roll: -0.108002] [Yaw: -0.019608] [Throttle:0.571277] [Flaps: 0.000000] [Data Ref: 89.328438] [T/O: true ][Cruise: false ] +[Elevator: 0.427744] [Roll: -0.298416] [Yaw: -0.062229] [Throttle:0.521715] [Flaps: 0.000000] [Data Ref: 81.846634] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: -0.325267] [Yaw: -0.066667] [Throttle:0.475736] [Flaps: 0.000000] [Data Ref: 74.458481] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: -0.325490] [Yaw: -0.066667] [Throttle:0.428906] [Flaps: 0.000000] [Data Ref: 67.703621] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: -0.323524] [Yaw: -0.066667] [Throttle:0.378403] [Flaps: 0.000000] [Data Ref: 61.016338] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: -0.321200] [Yaw: -0.066667] [Throttle:0.329479] [Flaps: 0.000000] [Data Ref: 55.717503] [T/O: true ][Cruise: false ] +[Elevator: 0.444375] [Roll: -0.544267] [Yaw: -0.107945] [Throttle:0.283179] [Flaps: 0.000000] [Data Ref: 50.908379] [T/O: true ][Cruise: false ] +[Elevator: 0.466667] [Roll: -0.751738] [Yaw: -0.150379] [Throttle:0.236342] [Flaps: 0.000000] [Data Ref: 46.552811] [T/O: true ][Cruise: false ] +[Elevator: 0.466667] [Roll: -0.756863] [Yaw: -0.152941] [Throttle:0.191001] [Flaps: 0.000000] [Data Ref: 42.622982] [T/O: true ][Cruise: false ] +[Elevator: 0.465460] [Roll: -0.756863] [Yaw: -0.152941] [Throttle:0.137858] [Flaps: 0.000000] [Data Ref: 39.763374] [T/O: true ][Cruise: false ] +[Elevator: 0.450980] [Roll: -0.756863] [Yaw: -0.152941] [Throttle:0.089226] [Flaps: 0.000000] [Data Ref: 37.597065] [T/O: true ][Cruise: false ] +[Elevator: 0.450980] [Roll: -0.765652] [Yaw: -0.152941] [Throttle:0.044174] [Flaps: 0.000000] [Data Ref: 36.147327] [T/O: true ][Cruise: false ] +[Elevator: 0.415085] [Roll: -0.856171] [Yaw: -0.168895] [Throttle:0.009637] [Flaps: 0.000000] [Data Ref: 35.369911] [T/O: true ][Cruise: false ] +[Elevator: 0.366691] [Roll: -0.929412] [Yaw: -0.184314] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.199234] [T/O: true ][Cruise: false ] +[Elevator: 0.180009] [Roll: -0.873829] [Yaw: -0.174208] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.542572] [T/O: true ][Cruise: false ] +[Elevator: 0.027378] [Roll: -0.748181] [Yaw: -0.148637] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.344006] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.694118] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.683323] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.631957] [Yaw: -0.127692] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.531929] [T/O: true ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.587314] [Yaw: -0.116726] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.505798] [T/O: true ][Cruise: false ] +[Elevator: 0.000180] [Roll: -0.584314] [Yaw: -0.113725] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.844082] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.584314] [Yaw: -0.113725] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.440372] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.584314] [Yaw: -0.113725] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.361324] [T/O: true ][Cruise: false ] +[Elevator: 0.015371] [Roll: -0.547105] [Yaw: -0.108001] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.460625] [T/O: true ][Cruise: false ] +[Elevator: 0.073399] [Roll: -0.439168] [Yaw: -0.087878] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.658707] [T/O: true ][Cruise: false ] +[Elevator: 0.164775] [Roll: -0.305630] [Yaw: -0.058778] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.029221] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.150071] [Yaw: -0.029202] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.771580] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.051129] [Yaw: -0.008168] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.376732] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.048207] [Yaw: 0.008534] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.301941] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: 0.124380] [Yaw: 0.024876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 73.677322] [T/O: true ][Cruise: false ] +[Elevator: 0.194423] [Roll: 0.195992] [Yaw: 0.038083] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 77.400513] [T/O: true ][Cruise: false ] +[Elevator: 0.181387] [Roll: 0.260639] [Yaw: 0.048991] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 80.767502] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.309804] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.318977] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.309804] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 87.445908] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.306966] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 90.364403] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.270806] [Yaw: 0.051900] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 93.970772] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 97.017998] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 100.113892] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 102.539764] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 104.964775] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.246925] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 109.326027] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 111.182625] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 112.981728] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 114.296913] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 115.435829] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.367607] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.120728] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.688477] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.147964] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.449394] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.604370] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.617729] [T/O: true ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.498566] [T/O: true ][Cruise: false ] +[Elevator: 0.176546] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.256050] [T/O: true ][Cruise: false ] +[Elevator: 0.184259] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.846130] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.329941] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.681717] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 115.856445] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 114.912643] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 113.917747] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 112.733337] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 111.451454] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 110.034630] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 108.673874] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.092583] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 105.447762] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 103.746986] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 101.906807] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 100.018311] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 98.028900] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 96.066673] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 93.953308] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.729408] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 89.357117] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 87.127625] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.772011] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 82.279205] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 79.985146] [T/O: true ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 77.334854] [T/O: true ][Cruise: false ] +[Elevator: 0.310595] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 74.585564] [T/O: true ][Cruise: false ] +[Elevator: 0.350973] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 71.939598] [T/O: true ][Cruise: false ] +[Elevator: 0.493675] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 69.246162] [T/O: true ][Cruise: false ] +[Elevator: 0.497560] [Roll: 0.203660] [Yaw: 0.038519] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.546555] [T/O: true ][Cruise: false ] +[Elevator: 0.446165] [Roll: 0.092950] [Yaw: 0.017957] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.857277] [T/O: true ][Cruise: false ] +[Elevator: 0.419354] [Roll: 0.023402] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.177410] [T/O: true ][Cruise: false ] +[Elevator: 0.411765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.585140] [T/O: true ][Cruise: false ] +[Elevator: 0.411765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.043285] [T/O: true ][Cruise: false ] +[Elevator: 0.411765] [Roll: 0.019608] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.602245] [T/O: true ][Cruise: false ] +[Elevator: 0.351013] [Roll: -0.013892] [Yaw: -0.004453] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 51.306896] [T/O: true ][Cruise: false ] +[Elevator: 0.268213] [Roll: -0.044325] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.072605] [T/O: true ][Cruise: false ] +[Elevator: 0.254902] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.234188] [T/O: true ][Cruise: false ] +[Elevator: 0.254902] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.411686] [T/O: true ][Cruise: false ] +[Elevator: 0.254902] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.714302] [T/O: true ][Cruise: false ] +[Elevator: 0.261424] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.185646] [T/O: true ][Cruise: false ] +[Elevator: 0.283740] [Roll: -0.033445] [Yaw: -0.007381] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.839600] [T/O: true ][Cruise: false ] +[Elevator: 0.299594] [Roll: 0.002298] [Yaw: 0.001555] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.616146] [T/O: true ][Cruise: false ] +[Elevator: 0.301961] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.570385] [T/O: true ][Cruise: false ] +[Elevator: 0.301961] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.690575] [T/O: true ][Cruise: false ] +[Elevator: 0.301961] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.960182] [T/O: true ][Cruise: false ] +[Elevator: 0.301961] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.393826] [T/O: true ][Cruise: false ] +[Elevator: 0.301961] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.934433] [T/O: true ][Cruise: false ] +[Elevator: 0.285438] [Roll: -0.013020] [Yaw: -0.000209] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.600597] [T/O: true ][Cruise: false ] +[Elevator: 0.265744] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.402313] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.306866] [T/O: true ][Cruise: false ] +[Elevator: 0.270502] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.339127] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.484070] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.738178] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.076427] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.517666] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.060570] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.596462] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.279819] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.952087] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.681725] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.471577] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.334114] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.170208] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.030449] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.944374] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.939583] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.871567] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.908546] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.928574] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.867447] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.905910] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.859352] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 51.858070] [T/O: true ][Cruise: false ] +[Elevator: 0.291369] [Roll: -0.038043] [Yaw: -0.006670] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.863312] [T/O: true ][Cruise: false ] +[Elevator: 0.328689] [Roll: 0.091466] [Yaw: 0.019126] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.876194] [T/O: true ][Cruise: false ] +[Elevator: 0.384947] [Roll: 0.343603] [Yaw: 0.071222] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.864910] [T/O: true ][Cruise: false ] +[Elevator: 0.396078] [Roll: 0.463701] [Yaw: 0.095877] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.725571] [T/O: true ][Cruise: false ] +[Elevator: 0.403276] [Roll: 0.481707] [Yaw: 0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.620872] [T/O: true ][Cruise: false ] +[Elevator: 0.401225] [Roll: 0.474263] [Yaw: 0.096241] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.533134] [T/O: true ][Cruise: false ] +[Elevator: 0.352415] [Roll: 0.337841] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.266087] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.317647] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.002228] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.316633] [Yaw: 0.065653] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.739876] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.307982] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 60.422016] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.113110] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.724621] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.350933] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.917076] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.474987] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.012604] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.275898] [Yaw: 0.052308] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.502701] [T/O: true ][Cruise: false ] +[Elevator: 0.300054] [Roll: 0.092537] [Yaw: 0.019186] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.970863] [T/O: true ][Cruise: false ] +[Elevator: 0.294118] [Roll: 0.044125] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.449158] [T/O: true ][Cruise: false ] +[Elevator: 0.287025] [Roll: 0.043137] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.868317] [T/O: true ][Cruise: false ] +[Elevator: 0.195033] [Roll: 0.035534] [Yaw: 0.004161] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.269142] [T/O: true ][Cruise: false ] +[Elevator: 0.160443] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.677200] [T/O: true ][Cruise: false ] +[Elevator: 0.088019] [Roll: 0.035605] [Yaw: 0.004233] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.053162] [T/O: true ][Cruise: false ] +[Elevator: 0.033025] [Roll: 0.044272] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.384026] [T/O: true ][Cruise: false ] +[Elevator: 0.017192] [Roll: 0.055812] [Yaw: 0.012973] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.699211] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.144571] [Yaw: 0.030588] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.996765] [T/O: true ][Cruise: false ] +[Elevator: 0.015824] [Roll: 0.465666] [Yaw: 0.090472] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.240326] [T/O: true ][Cruise: false ] +[Elevator: 0.053706] [Roll: 0.802027] [Yaw: 0.158308] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.440041] [T/O: true ][Cruise: false ] +[Elevator: 0.077798] [Roll: 0.963556] [Yaw: 0.190889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.590233] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.675095] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.691910] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.628464] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.423683] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.122971] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.706062] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.233696] [T/O: true ][Cruise: false ] +[Elevator: 0.082353] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.652283] [T/O: true ][Cruise: false ] +[Elevator: 0.088865] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.931099] [T/O: true ][Cruise: false ] +[Elevator: 0.128076] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.195854] [T/O: true ][Cruise: false ] +[Elevator: 0.249279] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.373314] [T/O: true ][Cruise: false ] +[Elevator: 0.364049] [Roll: 0.760196] [Yaw: 0.154632] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.468716] [T/O: true ][Cruise: false ] +[Elevator: 0.380392] [Roll: 0.647398] [Yaw: 0.131230] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.495411] [T/O: true ][Cruise: false ] +[Elevator: 0.380392] [Roll: 0.590217] [Yaw: 0.121014] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.465775] [T/O: true ][Cruise: false ] +[Elevator: 0.379624] [Roll: 0.537255] [Yaw: 0.105882] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 60.384502] [T/O: true ][Cruise: false ] +[Elevator: 0.361998] [Roll: 0.537255] [Yaw: 0.105882] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.171200] [T/O: true ][Cruise: false ] +[Elevator: 0.290839] [Roll: 0.537255] [Yaw: 0.105882] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.968800] [T/O: true ][Cruise: false ] +[Elevator: 0.206286] [Roll: 0.518438] [Yaw: 0.101178] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.780914] [T/O: true ][Cruise: false ] +[Elevator: 0.172161] [Roll: 0.499806] [Yaw: 0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.542652] [T/O: true ][Cruise: false ] +[Elevator: 0.153546] [Roll: 0.392470] [Yaw: 0.075417] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.485970] [T/O: true ][Cruise: false ] +[Elevator: 0.185993] [Roll: 0.182092] [Yaw: 0.039220] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.464500] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.083761] [Yaw: -0.017966] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.465149] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.363346] [Yaw: -0.071783] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 51.501839] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.443137] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.690445] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.443137] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.864845] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.443137] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.104172] [T/O: true ][Cruise: false ] +[Elevator: 0.207843] [Roll: -0.443137] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.391224] [T/O: true ][Cruise: false ] +[Elevator: 0.195752] [Roll: -0.425000] [Yaw: -0.084150] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.759468] [T/O: true ][Cruise: false ] +[Elevator: 0.115875] [Roll: -0.244159] [Yaw: -0.051840] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.154488] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.215686] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.583511] [T/O: true ][Cruise: false ] +[Elevator: 0.100071] [Roll: -0.213362] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.070007] [T/O: true ][Cruise: false ] +[Elevator: 0.056969] [Roll: -0.198061] [Yaw: -0.041198] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.589943] [T/O: true ][Cruise: false ] +[Elevator: 0.021252] [Roll: -0.185958] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.145256] [T/O: true ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.176471] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.725018] [T/O: true ][Cruise: false ] +[Elevator: 0.016474] [Roll: -0.105839] [Yaw: -0.021168] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.342903] [T/O: true ][Cruise: false ] +[Elevator: 0.041868] [Roll: 0.024653] [Yaw: 0.004931] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.961979] [T/O: true ][Cruise: false ] +[Elevator: 0.082750] [Roll: 0.147779] [Yaw: 0.030827] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.582218] [T/O: true ][Cruise: false ] +[Elevator: 0.131938] [Roll: 0.286896] [Yaw: 0.056165] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.212761] [T/O: true ][Cruise: false ] +[Elevator: 0.168413] [Roll: 0.301961] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.842590] [T/O: true ][Cruise: false ] +[Elevator: 0.204559] [Roll: 0.299681] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.446434] [T/O: true ][Cruise: false ] +[Elevator: 0.256521] [Roll: 0.267076] [Yaw: 0.055039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.005825] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.548931] [T/O: true ][Cruise: false ] +[Elevator: 0.286275] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.030174] [T/O: true ][Cruise: false ] +[Elevator: 0.275779] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.477348] [T/O: true ][Cruise: false ] +[Elevator: 0.270588] [Roll: 0.231373] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.913284] [T/O: true ][Cruise: false ] +[Elevator: 0.206159] [Roll: 0.270030] [Yaw: 0.056023] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.366734] [T/O: true ][Cruise: false ] +[Elevator: 0.106912] [Roll: 0.324929] [Yaw: 0.066573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.803036] [T/O: true ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.341057] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.212116] [T/O: true ][Cruise: false ] +[Elevator: 0.116848] [Roll: 0.304972] [Yaw: 0.062392] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.623573] [T/O: true ][Cruise: false ] +[Elevator: 0.312895] [Roll: 0.088602] [Yaw: 0.016874] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.038433] [T/O: true ][Cruise: false ] +[Elevator: 0.427451] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.508724] [T/O: true ][Cruise: false ] +[Elevator: 0.427451] [Roll: -0.043137] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.938137] [T/O: true ][Cruise: false ] +[Elevator: 0.427451] [Roll: -0.048430] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.413372] [T/O: true ][Cruise: false ] +[Elevator: 0.407318] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.896976] [T/O: true ][Cruise: false ] +[Elevator: 0.354555] [Roll: -0.059001] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.425285] [T/O: true ][Cruise: false ] +[Elevator: 0.145564] [Roll: -0.075329] [Yaw: -0.012584] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.966602] [T/O: true ][Cruise: false ] +[Elevator: 0.076209] [Roll: -0.082353] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.539528] [T/O: true ][Cruise: false ] +[Elevator: 0.043474] [Roll: -0.077237] [Yaw: -0.017050] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.127312] [T/O: true ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.066667] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.790550] [T/O: true ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.075357] [Yaw: -0.016110] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.474922] [T/O: true ][Cruise: false ] +[Elevator: 0.040811] [Roll: -0.145286] [Yaw: -0.029290] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.211800] [T/O: true ][Cruise: false ] +[Elevator: 0.083682] [Roll: -0.215387] [Yaw: -0.041509] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.985723] [T/O: true ][Cruise: false ] +[Elevator: 0.103160] [Roll: -0.223529] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.778482] [T/O: true ][Cruise: false ] +[Elevator: 0.144427] [Roll: -0.231238] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.597580] [T/O: true ][Cruise: false ] +[Elevator: 0.145818] [Roll: -0.225970] [Yaw: -0.042057] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.415855] [T/O: true ][Cruise: false ] +[Elevator: 0.171051] [Roll: -0.094047] [Yaw: -0.016185] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.233027] [T/O: true ][Cruise: false ] +[Elevator: 0.255949] [Roll: 0.070855] [Yaw: 0.012812] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.031824] [T/O: true ][Cruise: false ] +[Elevator: 0.260579] [Roll: 0.121869] [Yaw: 0.023941] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.800947] [T/O: true ][Cruise: false ] +[Elevator: 0.251453] [Roll: 0.222248] [Yaw: 0.042191] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.518549] [T/O: true ][Cruise: false ] +[Elevator: 0.247059] [Roll: 0.270588] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.205145] [T/O: true ][Cruise: false ] +[Elevator: 0.241681] [Roll: 0.249078] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.852661] [T/O: true ][Cruise: false ] +[Elevator: 0.226349] [Roll: 0.174881] [Yaw: 0.038114] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.454800] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.153195] [Yaw: 0.027705] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.033459] [T/O: true ][Cruise: false ] +[Elevator: 0.255466] [Roll: 0.118186] [Yaw: 0.026324] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.587002] [T/O: true ][Cruise: false ] +[Elevator: 0.260861] [Roll: 0.066972] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.130156] [T/O: true ][Cruise: false ] +[Elevator: 0.249783] [Roll: -0.005495] [Yaw: 0.001526] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.614317] [T/O: true ][Cruise: false ] +[Elevator: 0.250271] [Roll: -0.150104] [Yaw: -0.030663] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.070530] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.210208] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.525743] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.240881] [Yaw: -0.049436] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.988182] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.247059] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.412796] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.247059] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.873701] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.247059] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.307169] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.247059] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.787815] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.247059] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.234692] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.255164] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.695215] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.176947] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.620123] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.089647] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.262745] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.579029] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.269869] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.050022] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.270588] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.553877] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.270588] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.074633] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.269569] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.580338] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.259478] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.104931] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.242746] [Yaw: -0.048824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.636431] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.231373] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.220371] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.231373] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16.797184] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.231373] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16.445871] [T/O: true ][Cruise: false ] +[Elevator: 0.262745] [Roll: -0.231373] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16.135666] [T/O: true ][Cruise: false ] +[Elevator: 0.257256] [Roll: -0.176478] [Yaw: -0.032158] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15.844685] [T/O: true ][Cruise: false ] +[Elevator: 0.248151] [Roll: -0.078683] [Yaw: -0.013950] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15.600464] [T/O: true ][Cruise: false ] +[Elevator: 0.224512] [Roll: 0.000974] [Yaw: 0.003267] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15.385639] [T/O: true ][Cruise: false ] +[Elevator: 0.215253] [Roll: 0.077976] [Yaw: 0.012631] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15.190974] [T/O: true ][Cruise: false ] +[Elevator: 0.209863] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15.034428] [T/O: true ][Cruise: false ] +[Elevator: 0.218045] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.903364] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.779160] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.674562] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.583835] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.510480] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.446763] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.390715] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.344824] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.309648] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.281707] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.260377] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.243430] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.231533] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.222325] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.214549] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.207104] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.199129] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.190577] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.181479] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.172150] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.163676] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.155890] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149766] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.145556] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.144467] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.146477] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.151138] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158819] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.168836] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.179539] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.192192] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.203856] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.215766] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.225056] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.232677] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.237791] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.240542] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.240716] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.238672] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.234757] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.230267] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.225573] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.220583] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.216472] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.213217] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.211108] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.210550] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.211369] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.213317] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.215582] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.218145] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.220214] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.221072] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.220182] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.217432] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.212281] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.204535] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.195219] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.184615] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.171767] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158723] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.146384] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.134969] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.123803] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.115082] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.108753] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.105177] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.104572] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.106546] [T/O: true ][Cruise: false ] +[Elevator: 0.223529] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.110717] [T/O: true ][Cruise: false ] +[Elevator: 0.224513] [Roll: 0.138012] [Yaw: 0.027602] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.116994] [T/O: true ][Cruise: false ] +[Elevator: 0.325490] [Roll: 0.215686] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.124517] [T/O: true ][Cruise: false ] +[Elevator: 0.336665] [Roll: 0.215686] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.133568] [T/O: true ][Cruise: false ] +[Elevator: 0.483810] [Roll: 0.205394] [Yaw: 0.041422] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.142600] [T/O: true ][Cruise: false ] +[Elevator: 0.744838] [Roll: 0.168628] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.150972] [T/O: true ][Cruise: false ] +[Elevator: 0.768426] [Roll: 0.168628] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158659] [T/O: true ][Cruise: false ] +[Elevator: 0.848792] [Roll: 0.160469] [Yaw: 0.033255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.165914] [T/O: true ][Cruise: false ] +[Elevator: 0.978855] [Roll: 0.137255] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.173677] [T/O: true ][Cruise: false ] +[Elevator: 0.949893] [Roll: 0.129879] [Yaw: 0.024992] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.182609] [T/O: true ][Cruise: false ] +[Elevator: 0.611894] [Roll: 0.102629] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.193703] [T/O: true ][Cruise: false ] +[Elevator: 0.201848] [Roll: 0.090196] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.206285] [T/O: true ][Cruise: false ] +[Elevator: 0.088405] [Roll: 0.090196] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.224124] [T/O: true ][Cruise: false ] +[Elevator: -0.026128] [Roll: 0.084396] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.246307] [T/O: true ][Cruise: false ] +[Elevator: -0.070770] [Roll: 0.082353] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.274816] [T/O: true ][Cruise: false ] +[Elevator: -0.034245] [Roll: 0.076601] [Yaw: 0.013856] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.311354] [T/O: true ][Cruise: false ] +[Elevator: 0.276399] [Roll: 0.032223] [Yaw: 0.005724] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.355928] [T/O: true ][Cruise: false ] +[Elevator: 0.448179] [Roll: 0.013187] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.406045] [T/O: true ][Cruise: false ] +[Elevator: 0.466667] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.451582] [T/O: true ][Cruise: false ] +[Elevator: 0.466667] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.482648] [T/O: true ][Cruise: false ] +[Elevator: 0.464771] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.494300] [T/O: true ][Cruise: false ] +[Elevator: 0.445456] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.492005] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.481271] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.465777] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.448081] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.430147] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.411372] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.393049] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.375746] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.358110] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.341274] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.323882] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.306908] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.290523] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.273407] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.255264] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.237090] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.220104] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.202356] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.186067] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.171069] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.157217] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.144698] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.135268] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.128168] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.123202] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.120454] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.119950] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.121161] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.123996] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.127860] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.132884] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.137951] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.143670] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.154394] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158176] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.160829] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.162354] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.162998] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.162693] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.161653] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.160158] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158792] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.157981] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.157492] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.157475] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.158149] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.159642] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.162358] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.166382] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.171790] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.177671] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.184404] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.193254] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.201945] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.210629] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.218166] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.223662] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.227965] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.229940] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.228684] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.224686] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.218729] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.213023] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.208737] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.204225] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.199480] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.194510] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.190107] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.187228] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.185014] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.182379] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.179312] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.175983] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.173551] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.172872] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.172219] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.170847] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.168821] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.166336] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.164450] [T/O: true ][Cruise: false ] +[Elevator: 0.419608] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.164243] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.437004] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437010] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436968] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436890] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436941] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437405] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437803] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444090] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445915] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446749] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447515] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447346] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446844] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446281] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445591] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444870] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443222] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440496] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433525] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430504] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422953] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409937] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405453] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401030] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397411] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394329] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392254] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391237] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.392395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.394396] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398712] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403885] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405815] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410242] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.416639] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.429272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432808] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434917] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.435581] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427736] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.423594] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418901] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414165] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406939] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.405977] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407156] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.410177] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.419445] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425129] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432903] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.438757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.449249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453173] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456137] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457956] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.460674] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462870] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465950] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469280] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472925] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472874] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470533] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463240] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459578] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456120] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452188] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.451902] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452099] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452246] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453489] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454794] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455593] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458796] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461187] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463900] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.466642] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469011] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470873] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471989] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472570] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473295] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474119] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475069] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.476307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.495758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.502144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.511063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.539024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.216774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.762360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.219032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.317139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.356625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.230812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.005123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.461998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.290337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.385906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.286175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.102634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.143745] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17.376799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.400850] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408241] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418650] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422314] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425425] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432682] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434635] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.437878] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439226] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440607] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441896] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443277] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444502] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446619] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.447224] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446417] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.445068] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.444267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.443388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.442320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.440987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.439215] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436989] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434488] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.431425] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.427822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424026] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420288] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415854] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411472] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.403145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399334] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.396004] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393496] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391727] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.391562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.393026] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.395069] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.397350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.399452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.401051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.402731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406647] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.408979] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411373] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.414162] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.417969] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.422476] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.426794] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.433401] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.434563] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.432348] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.428957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.425043] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.420170] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.415846] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.411505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.407743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.406822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.409462] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.413458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418627] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.424469] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.430416] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.436445] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.441628] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.446375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.450640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.453856] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455826] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.458889] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461565] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464998] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.470196] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471611] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.472065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471287] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.468910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.462498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.456856] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.454729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455252] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455515] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455334] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.455730] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.457048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.459000] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.461206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.463118] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.464499] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.465857] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.467495] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.469648] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.471411] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.473118] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.474596] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.475952] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.477146] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.478889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.479801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.480667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.481600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.482998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.484407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.485569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.486626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.487738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.488966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.489916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.491474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.493261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.498240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.500599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.503407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.507893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.514870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.523514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.534407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.546400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.560490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.578093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.602304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.634836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.678049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.734491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.804762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.884951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.985134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.099705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.220530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.372459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.526247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.712809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.928484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.173439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.425701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.708385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.020151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.356178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.737633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.160097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.600067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.030848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.549221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.094355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.673185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.303858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.958593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.664747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.416128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.239067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.101067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.026239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.011299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.048927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.142815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.237747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.472099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.747738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.122234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.593525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.175632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.847683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.598694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.495697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.407841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.461964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.689575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.855389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.018513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.385571] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.622086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.007599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.498405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.160217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.768295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.327858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.098869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.886398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.640991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.721519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.645103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.349892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.063774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.982010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.846382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.746689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.651993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.493324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.467834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.413765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.392685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.773628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.999359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.168335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.609299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.036987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.294006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.523804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.151825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.475998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.213715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.624817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.294998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.095078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.478760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.972046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.865967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.123718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.317825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.303986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.569305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.570023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.756439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.441437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.086792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.902451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.548218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.200043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.873947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.107590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.105072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.663818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.459427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.193405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.993881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.553101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.950073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.382416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.272705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.086823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.400604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.802612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.225922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.722626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.044403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.581726] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.657745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.852264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.928070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.973358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.993256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.991333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.693054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.547424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.213593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.860931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.459045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.755341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.011627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.359161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.638336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.790527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.948151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.081848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.128510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.122589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.136536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.997864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.850159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.558441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.350525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.916809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.509369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.028595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.491638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.948090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.375977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.995087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.517975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.984558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.248901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.521637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.832825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.036499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.199188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.394348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.520355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.626709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.539337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.393188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.283569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.201721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.012939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.792908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.525421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.189728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.911987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.589294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.231537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.802124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.336761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.876282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.434631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.046478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.513580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.044220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.530334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.995758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.475433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.958069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.484589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.951843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.410431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.889526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.411194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.900574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.403839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.930817] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.476654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.039764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.641174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.256104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.843506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.474426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.119873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.843262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.517975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.247437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.040649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.626495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.415894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.269653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.152374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.078735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.055420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.046692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.068787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.146637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.165039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.221161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.389618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.694000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.037445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.462402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.909912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.494080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.130157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.758087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.404816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.184082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.108002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.039063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.002777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.083649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.156860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.330383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.512115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.711670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.063812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.435852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.897552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.314301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.753052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.316345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.034332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.726624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.500427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.192780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.955750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.770599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.390137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.913788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.520386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.179108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.897247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.672760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.649719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.837463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.665375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.884247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.902069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.123230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.230927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.741180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.018311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.207336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.719360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.011353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.391235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.497681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.649292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.111389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.534485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.654663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.190674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.716370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.369080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.387573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.542236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.870667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.404907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.762268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.188171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.471436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.910522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.392944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.730530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.197388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.417786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.722290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.026611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.240967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.598999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.860291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.301697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.527283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.873291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.002991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.949219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.002930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.179138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.232117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.195923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.032288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.852844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.602966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.395569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.203674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.852234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.434387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.999512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.606567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.259766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.780701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.092468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.401001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.796631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.039063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.100708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.363159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.403320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.402283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.465637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.474854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.350830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.157837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.936646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.722534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.524658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.222717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.791260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.403137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.965942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.496277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.975952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.476624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.835388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.195251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.588318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.860352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.123291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.365234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.560669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.720337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.816467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.836426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.867676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.832397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.735718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.526550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.293335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.092773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.806946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.510742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.170654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.839844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.546387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.131653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.758423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.364136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.002014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.542542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.150635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.725525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.323425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.932190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.568359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.204590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.861084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.523438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.166016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.840393] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.526001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.243225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.953979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.664246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.392090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.103088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.893494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.695190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.431213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.257324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.147461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.022766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.919678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.912048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.813660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.760986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.802673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.783142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.837463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.894897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.013733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.155151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.367432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.547607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.853455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.124268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.464355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.854736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.260620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.778625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.274292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.139160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.693909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.385742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.082031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.885498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.772827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.447815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.212158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.057617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.959656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.973755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.998657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.078857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.213501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.316650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.411743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.512451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.682190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.057556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.242310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.409058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.613403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.968933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.414246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.888855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.360413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.897034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.476013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.010376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.649170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.241150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.036682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.687866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.743408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.492554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.431274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.198120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.887512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.013000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.869202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.741821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.607727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.522583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.481445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.213562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.166016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.180298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.098999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.002625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.091675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.057373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.979553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.942566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.874512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.973022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.741333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.821472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.600403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.439575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.390930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.178101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.109985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.147766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.791138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.845032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.625916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.405273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.833130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.611389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.143616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.758789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.362427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.020935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.577332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.224121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.587585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.130066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.849609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.480164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.988708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.575928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.213623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.591187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.056030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.685913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.963440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.340149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.682861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.797424] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.948425] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.902222] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.843079] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.732544] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.603027] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.380432] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.275269] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.001953] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.711853] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.366943] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.178467] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.753906] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.265869] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.732910] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.142944] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.618286] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.026855] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.278564] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.477173] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.666626] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.819702] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.788452] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.690186] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.501465] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.242554] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.947876] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.480225] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.944458] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.264404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.473145] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.560791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.513184] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.319336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.024536] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.592041] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.987427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.296021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.390015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.413818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.303467] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.091187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.765015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.180420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.489624] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.766357] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.709717] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.742065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.417969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.078186] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.771606] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.445129] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.738403] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.038635] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.296509] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.247192] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.324158] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.361694] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.129333] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.726868] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.817444] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.292908] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.568909] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.763123] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.750793] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.051514] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.226379] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.141663] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.314819] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.685974] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.747681] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.018738] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.416870] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.515076] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.199829] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.566895] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.180298] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.114929] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.147705] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.020020] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.251282] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.579041] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.247375] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.838867] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.794189] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.166260] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.751648] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.465332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.464050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.877319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.604370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.630188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.206421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.986694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.075195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.489136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.413147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.531311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.134399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.779846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.319580] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.724182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.721619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.235474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.511536] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.920715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.052551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.924988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.255798] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.663879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.928345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.437927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.304443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.960022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.276062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.941162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.295227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.362305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.777344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.100708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.445801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.398560] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.364258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.990356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.417358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.042114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.240967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.066650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.028320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.515259] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.694214] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.975464] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.593140] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.392822] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.218872] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.913574] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.119629] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.604980] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.167847] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.895874] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.500122] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.730835] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.631104] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.682617] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.013428] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.852417] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.972900] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.711060] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.112549] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.767822] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.822388] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.736084] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.963135] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.025757] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.469360] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.180664] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.522949] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.039673] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.568970] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.409546] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.233276] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.843872] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.666992] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.246948] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.384888] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.502075] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.397095] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.859741] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.203491] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.421265] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.946045] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.818848] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.337891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.866821] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.943604] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.891724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.684937] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.218018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.636353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.849854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.704712] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.394897] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.829346] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.996582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.954590] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.648682] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.146484] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.352661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.365601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.052124] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.489868] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.652954] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.515381] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.106201] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.470825] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.927002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.870361] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.667114] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.873291] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.196655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.356812] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.263794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.961548] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.115845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.334229] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.411255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.355347] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.968384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.437012] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.374878] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.348999] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.249878] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.757202] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.233276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.404175] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.445923] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.400635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.026123] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.626465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.513184] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.617065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.991089] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.686768] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.826904] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.279663] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.256958] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.827271] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.098145] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.920532] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.109009] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.973999] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.000244] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.026245] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.653320] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.963379] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.514160] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.783569] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.803589] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.166504] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.741455] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.560059] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.151245] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.762207] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.348267] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.359497] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.505249] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.949524] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.053345] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.494202] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.218018] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.044922] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.269043] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.179382] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.287537] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.117676] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.009399] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.703125] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.480469] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.065979] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.366211] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.680237] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.468140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.991760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.046204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.746765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.035095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.207825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.984009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.353699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.485474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.328735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.835693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.190308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.265015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.102783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.703613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.097473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.341736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.464111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.084473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.301086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.471497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.401917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.745239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.517822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.202393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.277405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.792725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.896667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.563538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.711853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.702332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.540222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.389526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.419067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.250610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.944275] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.612793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.896240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.432739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.174683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.666138] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.863159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.817627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.832275] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.971924] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.242310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.334473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.521851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.709351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.456909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.023071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.394287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.434814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.730225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.915161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.900146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.120361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.342041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.175781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.019653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.796753] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.997925] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.369385] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.591431] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.837646] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.737305] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.311157] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.370972] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.440552] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.949707] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.985962] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.671021] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.394409] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.981201] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.884033] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.969360] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.007080] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.250610] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.557617] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.723999] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.263916] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.128418] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.924805] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.293701] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.643188] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.486816] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.637939] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.890625] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.260254] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.466675] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.167358] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.046631] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.292847] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.945190] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.556396] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.939575] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1611.727051] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.925781] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.930664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1620.564331] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1624.832764] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.481445] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.766846] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.561401] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.982788] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1629.025635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.667480] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.942505] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.618896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1625.084595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.134521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1620.747314] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.894409] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.501099] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.810791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.256226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.506714] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.431763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.506714] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.455933] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.548096] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.246948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.328003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.844849] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.587891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.551514] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.533447] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.935547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1504.124390] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1493.992432] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.289429] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.774658] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.633057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.232056] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.285645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.376587] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.392334] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.005981] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.229004] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.573242] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.588135] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.862549] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.594482] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.780029] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.528931] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.195557] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.623047] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.252808] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.590332] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.543335] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.157593] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.995483] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.517212] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.553711] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.447632] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.658447] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.383057] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.312622] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.813721] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.689453] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.155518] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.893860] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.996338] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.558228] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.826355] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.210938] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.888184] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.299500] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.466187] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.542786] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.703491] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.341919] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.848328] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.123413] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.599854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.071716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.004272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.747437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.159851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.517151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.569214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.995850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.910950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.775085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.776306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.639282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.989441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.917480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.985474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.000671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.699463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.813965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.857361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.211792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.136230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.648499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.512695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.428284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.577454] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.447937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.021545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.373596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.947998] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.791748] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.808289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.334961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.287598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.240173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.689453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.993225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.729126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.692200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.581787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.030884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.445618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.413147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.369385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.152893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.346619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.779480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.364807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.745789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.520081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.844971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.468628] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.597595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.632751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.393494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.484497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.208862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.941650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.893555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.355225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.863403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.242676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.935303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.613037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.401733] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.231567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.930176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.835327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.515869] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.827759] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.378418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.740967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.324585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.440796] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.965210] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.004517] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.416016] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.321167] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.091064] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.503662] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.224731] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.547974] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.568115] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.762817] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.864624] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.828369] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.332397] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.718262] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.466797] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.430176] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.809204] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.394653] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.178955] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.966309] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.572510] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.147339] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.193848] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.089233] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1470.074219] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.923462] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.898926] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.433472] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.674072] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.254883] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.319580] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.874146] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.953003] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.557983] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.687256] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1482.334961] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.501953] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1478.125610] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1475.169922] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.100342] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.355835] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.302734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.983276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.265503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.891113] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.312866] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.801880] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.485718] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.772949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.231934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.425659] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.564697] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.333618] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.352905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.698486] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.449951] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.806396] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.558228] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.611450] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.274292] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.677490] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.910278] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.980225] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.217163] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.505493] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.946655] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.030762] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.420898] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.526245] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.970703] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.242432] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.048340] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.204712] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.423096] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.706055] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.382324] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.063965] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.810364] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.695557] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.238220] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.203003] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.004333] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.626221] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.772705] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.131104] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.057556] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.338318] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.214417] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.776672] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.933228] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.384216] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.262939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.199219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.859436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.045410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.802917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.906921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.454651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.086914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.888367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.849792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.792786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.681702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.387024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.014465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.660400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.573914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.492523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.110168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.237366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.482330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.127808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.281311] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.146291] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146509] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146666] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146872] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146931] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146986] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147018] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147088] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147345] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147527] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147263] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147122] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147099] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147198] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147659] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147958] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149168] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148543] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147676] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147286] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144489] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142625] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136993] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117102] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114413] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111904] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107295] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106277] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105266] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108014] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109915] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114105] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118433] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120737] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125385] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127917] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130353] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.132933] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135471] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137948] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140332] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143226] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144520] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145363] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146163] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147687] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147722] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147633] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148541] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149554] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151188] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152480] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153241] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155057] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155989] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157014] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158047] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158836] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160465] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163684] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166057] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167264] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167972] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167715] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167701] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167609] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167801] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168040] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168628] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169299] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171758] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173975] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173742] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173318] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173236] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173576] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174090] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174773] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175447] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176946] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181285] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182588] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185548] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185861] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184671] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181952] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180361] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178825] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176895] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177370] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178708] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182997] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188133] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190161] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191669] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193681] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195290] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197212] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199417] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201398] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203214] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204725] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205760] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206394] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206872] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207168] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207435] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207939] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208374] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208386] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208244] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207930] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207039] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: -0.250117] [Yaw: -0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205317] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.167983] [Yaw: -0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202773] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.167983] [Yaw: -0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199992] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197175] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.420448] [Yaw: -0.084090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194977] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.462905] [Yaw: -0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193567] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193233] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193835] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195333] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197726] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200780] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204303] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207955] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211510] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214901] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.484434] [Yaw: -0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218517] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.484434] [Yaw: -0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222599] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.473645] [Yaw: -0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227292] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.441575] [Yaw: -0.088315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232378] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.441575] [Yaw: -0.088315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237586] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.441575] [Yaw: -0.088315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243350] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249035] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.254334] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259269] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: -0.441575] [Yaw: -0.088315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.263925] [T/O: true ][Cruise: false ] +[Elevator: 0.045896] [Roll: -0.409963] [Yaw: -0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.267805] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.399532] [Yaw: -0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.270982] [T/O: true ][Cruise: false ] +[Elevator: 0.129582] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.273628] [T/O: true ][Cruise: false ] +[Elevator: 0.163619] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.275827] [T/O: true ][Cruise: false ] +[Elevator: 0.217409] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.278246] [T/O: true ][Cruise: false ] +[Elevator: 0.235987] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.281426] [T/O: true ][Cruise: false ] +[Elevator: 0.235987] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.286654] [T/O: true ][Cruise: false ] +[Elevator: 0.235987] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.295403] [T/O: true ][Cruise: false ] +[Elevator: 0.264408] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.310900] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.334189] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.370387] [T/O: true ][Cruise: false ] +[Elevator: 0.323086] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.421852] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.495544] [T/O: true ][Cruise: false ] +[Elevator: 0.343152] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.600834] [T/O: true ][Cruise: false ] +[Elevator: 0.363454] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.741679] [T/O: true ][Cruise: false ] +[Elevator: 0.373692] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.934914] [T/O: true ][Cruise: false ] +[Elevator: 0.373692] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.173341] [T/O: true ][Cruise: false ] +[Elevator: 0.373692] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.490438] [T/O: true ][Cruise: false ] +[Elevator: 0.383987] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.881551] [T/O: true ][Cruise: false ] +[Elevator: 0.415199] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.356726] [T/O: true ][Cruise: false ] +[Elevator: 0.425710] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.930363] [T/O: true ][Cruise: false ] +[Elevator: 0.436274] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.575380] [T/O: true ][Cruise: false ] +[Elevator: 0.457554] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.316256] [T/O: true ][Cruise: false ] +[Elevator: 0.468269] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.152382] [T/O: true ][Cruise: false ] +[Elevator: 0.479034] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.091736] [T/O: true ][Cruise: false ] +[Elevator: 0.500708] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.111673] [T/O: true ][Cruise: false ] +[Elevator: 0.500708] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.257339] [T/O: true ][Cruise: false ] +[Elevator: 0.511617] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.536400] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.900003] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.324499] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.895912] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.627409] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.414837] [T/O: true ][Cruise: false ] +[Elevator: 0.544620] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.255463] [T/O: true ][Cruise: false ] +[Elevator: 0.555712] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.170551] [T/O: true ][Cruise: false ] +[Elevator: 0.566849] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.154305] [T/O: true ][Cruise: false ] +[Elevator: 0.566849] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.159595] [T/O: true ][Cruise: false ] +[Elevator: 0.566849] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.235695] [T/O: true ][Cruise: false ] +[Elevator: 0.611829] [Roll: -0.269206] [Yaw: -0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.531170] [T/O: true ][Cruise: false ] +[Elevator: 0.657480] [Roll: -0.159279] [Yaw: -0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.910091] [T/O: true ][Cruise: false ] +[Elevator: 0.657480] [Roll: -0.142159] [Yaw: -0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.286102] [T/O: true ][Cruise: false ] +[Elevator: 0.657480] [Roll: -0.109159] [Yaw: -0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.811901] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.389301] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.923412] [T/O: true ][Cruise: false ] +[Elevator: 0.657480] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.702644] [T/O: true ][Cruise: false ] +[Elevator: 0.668994] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.416069] [T/O: true ][Cruise: false ] +[Elevator: 0.668994] [Roll: 0.101193] [Yaw: 0.020239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.189980] [T/O: true ][Cruise: false ] +[Elevator: 0.657480] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.666290] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.559883] [T/O: true ][Cruise: false ] +[Elevator: 0.415199] [Roll: 0.176777] [Yaw: 0.035355] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.398926] [T/O: true ][Cruise: false ] +[Elevator: 0.020726] [Roll: 0.250117] [Yaw: 0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.163002] [T/O: true ][Cruise: false ] +[Elevator: -0.074325] [Roll: 0.278855] [Yaw: 0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.990013] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.771973] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: 0.328080] [Yaw: 0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.644341] [T/O: true ][Cruise: false ] +[Elevator: -0.146402] [Roll: 0.389155] [Yaw: 0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.411217] [T/O: true ][Cruise: false ] +[Elevator: -0.146402] [Roll: 0.399532] [Yaw: 0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.298126] [T/O: true ][Cruise: false ] +[Elevator: -0.146402] [Roll: 0.399532] [Yaw: 0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.057175] [T/O: true ][Cruise: false ] +[Elevator: -0.146402] [Roll: 0.399532] [Yaw: 0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.776001] [T/O: true ][Cruise: false ] +[Elevator: -0.146402] [Roll: 0.399532] [Yaw: 0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.381027] [T/O: true ][Cruise: false ] +[Elevator: -0.154963] [Roll: 0.462905] [Yaw: 0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.185043] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.902084] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.697954] [Yaw: 0.139591] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.423309] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.773445] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.931313] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.215347] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.387260] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.508545] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.548424] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.387344] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.709606] [Yaw: 0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.256050] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.697954] [Yaw: 0.139591] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.070229] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.583635] [Yaw: 0.116727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.720764] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.226952] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.462905] [Yaw: 0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.590485] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.452215] [Yaw: 0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.812790] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.877197] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.797424] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.554092] [T/O: true ][Cruise: false ] +[Elevator: -0.163619] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.155991] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.627350] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.949570] [T/O: true ][Cruise: false ] +[Elevator: -0.181207] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.164673] [T/O: true ][Cruise: false ] +[Elevator: -0.181207] [Roll: 0.203680] [Yaw: 0.040736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.244080] [T/O: true ][Cruise: false ] +[Elevator: -0.181207] [Roll: 0.278855] [Yaw: 0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.184555] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.997452] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.685852] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.261490] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.695816] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.080826] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.310410] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.411179] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.402710] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.281235] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.061340] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.754417] [T/O: true ][Cruise: false ] +[Elevator: -0.172368] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.311600] [T/O: true ][Cruise: false ] +[Elevator: -0.154963] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.715897] [T/O: true ][Cruise: false ] +[Elevator: -0.105161] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.016396] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: 0.288571] [Yaw: 0.057714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.162125] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: 0.278855] [Yaw: 0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.343910] [T/O: true ][Cruise: false ] +[Elevator: -0.026635] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.186684] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.250117] [Yaw: 0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.147720] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: 0.231314] [Yaw: 0.046263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.891144] [T/O: true ][Cruise: false ] +[Elevator: 0.026635] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.560768] [T/O: true ][Cruise: false ] +[Elevator: 0.039249] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.282593] [T/O: true ][Cruise: false ] +[Elevator: 0.045896] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.757248] [T/O: true ][Cruise: false ] +[Elevator: 0.052742] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.157700] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: 0.203680] [Yaw: 0.040736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.376488] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.185659] [Yaw: 0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.571945] [T/O: true ][Cruise: false ] +[Elevator: 0.129582] [Roll: 0.176777] [Yaw: 0.035355] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.883644] [T/O: true ][Cruise: false ] +[Elevator: 0.163619] [Roll: 0.167983] [Yaw: 0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.066101] [T/O: true ][Cruise: false ] +[Elevator: 0.181207] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.178612] [T/O: true ][Cruise: false ] +[Elevator: 0.208236] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.263039] [T/O: true ][Cruise: false ] +[Elevator: 0.245388] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.242729] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.368286] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.382439] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.502571] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.723030] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.917137] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.165443] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.572311] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.111320] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.629585] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.272991] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.883400] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.645710] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.548599] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: 0.125442] [Yaw: 0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.621189] [T/O: true ][Cruise: false ] +[Elevator: 0.217409] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.913761] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.316402] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.857834] [T/O: true ][Cruise: false ] +[Elevator: 0.005249] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.582649] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.482899] [T/O: true ][Cruise: false ] +[Elevator: -0.026635] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.569664] [T/O: true ][Cruise: false ] +[Elevator: -0.032820] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.841648] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: 0.167983] [Yaw: 0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.316383] [T/O: true ][Cruise: false ] +[Elevator: -0.074325] [Roll: 0.167983] [Yaw: 0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.950348] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.743256] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.085637] [Yaw: 0.017127] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.696739] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.049295] [Yaw: 0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.795338] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.038223] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.391346] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.868343] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.429676] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.135471] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.963306] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.839054] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.819839] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.826572] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.956497] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.170933] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.363556] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.612110] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.968838] [T/O: true ][Cruise: false ] +[Elevator: -0.097256] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.338455] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.746925] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.248596] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.781006] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.312408] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.898651] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.563011] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.249195] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.979179] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.711205] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.457695] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.282242] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.152878] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.060471] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.982094] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.902855] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.876831] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.901833] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.002769] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.135025] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.244400] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.349457] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.490608] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.632561] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.915298] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.198685] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.490471] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.755531] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.976753] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.362984] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.817795] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.302917] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.766975] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.287010] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.694084] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.163643] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.726006] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.362358] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.016815] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.697571] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.419846] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.143951] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.907913] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.665527] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.484634] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.298828] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.149017] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.067139] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.926636] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.797638] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.661087] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.575974] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.539673] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.474380] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.287766] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.283951] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.262604] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.165024] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.002487] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.964798] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.935852] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.778885] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.813248] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.624283] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.623108] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.698700] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.765503] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.749924] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.743774] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.808044] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.886429] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.940643] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.990829] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.946533] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.886002] [T/O: true ][Cruise: false ] +[Elevator: -0.097256] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.808762] [T/O: true ][Cruise: false ] +[Elevator: -0.105161] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.825256] [T/O: true ][Cruise: false ] +[Elevator: -0.105161] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.889359] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.932678] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.856674] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.720779] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.792007] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.798889] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.793732] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.761444] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.766083] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.738220] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.632904] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.521393] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.307068] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.164703] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: -0.023644] [Yaw: -0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.033020] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.042546] [Yaw: 0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.900940] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.078060] [Yaw: 0.015612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.717072] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.078060] [Yaw: 0.015612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.577057] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.320313] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.072998] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.648285] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.259613] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.911285] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.570160] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.117188] [T/O: true ][Cruise: false ] +[Elevator: -0.113187] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.634399] [T/O: true ][Cruise: false ] +[Elevator: -0.121329] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.193115] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: 0.222025] [Yaw: 0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.741302] [T/O: true ][Cruise: false ] +[Elevator: -0.208236] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.228516] [T/O: true ][Cruise: false ] +[Elevator: -0.264408] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.698608] [T/O: true ][Cruise: false ] +[Elevator: -0.264408] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.113312] [T/O: true ][Cruise: false ] +[Elevator: -0.264408] [Roll: 0.212813] [Yaw: 0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.540771] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.203680] [Yaw: 0.040736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.903503] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.194628] [Yaw: 0.038926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.247498] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.185659] [Yaw: 0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.501862] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.185659] [Yaw: 0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.838776] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.034729] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.063349] [Yaw: 0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.134613] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.263428] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.335541] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.377075] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.335175] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.155487] [T/O: true ][Cruise: false ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.972626] [T/O: true ][Cruise: false ] +[Elevator: -0.264022] [Roll: -0.017521] [Yaw: 0.028496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.757874] [T/O: true ][Cruise: false ] +[Elevator: -0.254022] [Roll: -0.027521] [Yaw: 0.058496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.374390] [T/O: true ][Cruise: false ] +[Elevator: -0.244022] [Roll: -0.017521] [Yaw: 0.088496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.014984] [T/O: true ][Cruise: false ] +[Elevator: -0.234022] [Roll: -0.007521] [Yaw: 0.118496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.525269] [T/O: true ][Cruise: false ] +[Elevator: -0.224022] [Roll: 0.002479] [Yaw: 0.148496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.990204] [T/O: true ][Cruise: false ] +[Elevator: -0.214022] [Roll: 0.012479] [Yaw: 0.178496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.458557] [T/O: true ][Cruise: false ] +[Elevator: -0.204022] [Roll: 0.022479] [Yaw: 0.208496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.844055] [T/O: true ][Cruise: false ] +[Elevator: -0.194022] [Roll: 0.032479] [Yaw: 0.238496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.157257] [T/O: true ][Cruise: false ] +[Elevator: -0.184022] [Roll: 0.042479] [Yaw: 0.268496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.325928] [T/O: true ][Cruise: false ] +[Elevator: -0.174022] [Roll: 0.052479] [Yaw: 0.298496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.402405] [T/O: true ][Cruise: false ] +[Elevator: -0.164022] [Roll: 0.042479] [Yaw: 0.328496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.425903] [T/O: true ][Cruise: false ] +[Elevator: -0.154022] [Roll: 0.032479] [Yaw: 0.358496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.411469] [T/O: true ][Cruise: false ] +[Elevator: -0.144022] [Roll: 0.022479] [Yaw: 0.388496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.348480] [T/O: true ][Cruise: false ] +[Elevator: -0.134022] [Roll: 0.012479] [Yaw: 0.418496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.231293] [T/O: true ][Cruise: false ] +[Elevator: -0.124022] [Roll: 0.002479] [Yaw: 0.448496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.097717] [T/O: true ][Cruise: false ] +[Elevator: -0.114022] [Roll: -0.007521] [Yaw: 0.478496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.867462] [T/O: true ][Cruise: false ] +[Elevator: -0.104022] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.574768] [T/O: true ][Cruise: false ] +[Elevator: -0.094022] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.196289] [T/O: true ][Cruise: false ] +[Elevator: -0.084022] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.762238] [T/O: true ][Cruise: false ] +[Elevator: -0.074022] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.269226] [T/O: true ][Cruise: false ] +[Elevator: -0.064022] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.722076] [T/O: true ][Cruise: false ] +[Elevator: -0.054022] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.140472] [T/O: true ][Cruise: false ] +[Elevator: -0.044022] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.516632] [T/O: true ][Cruise: false ] +[Elevator: -0.034022] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.834778] [T/O: true ][Cruise: false ] +[Elevator: -0.024022] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.117188] [T/O: true ][Cruise: false ] +[Elevator: -0.014022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.371429] [T/O: true ][Cruise: false ] +[Elevator: -0.004022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.601074] [T/O: true ][Cruise: false ] +[Elevator: 0.005978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.795288] [T/O: true ][Cruise: false ] +[Elevator: 0.015978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.963257] [T/O: true ][Cruise: false ] +[Elevator: 0.025978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.105011] [T/O: true ][Cruise: false ] +[Elevator: 0.035978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.219513] [T/O: true ][Cruise: false ] +[Elevator: 0.045978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.313171] [T/O: true ][Cruise: false ] +[Elevator: 0.055978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.393707] [T/O: true ][Cruise: false ] +[Elevator: 0.065978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.458832] [T/O: true ][Cruise: false ] +[Elevator: 0.075978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.513672] [T/O: true ][Cruise: false ] +[Elevator: 0.085978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.563110] [T/O: true ][Cruise: false ] +[Elevator: 0.095978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.609924] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.661163] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.716949] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.785919] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.868378] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.965240] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.089355] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.239136] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.414642] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.633362] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.879700] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.167542] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.504333] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.884918] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.301849] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.793793] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.310303] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.894318] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.532104] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.229675] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.007874] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.841827] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.724457] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.668457] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.748596] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.854614] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.027405] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.261719] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.157715] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.659393] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.233643] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.857819] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.510132] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.317810] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.153992] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.008698] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.045990] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.024963] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.248566] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.462128] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.637817] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.029419] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.345184] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.765076] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.257690] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.770325] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.336853] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.921082] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.858765] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.941864] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.801910] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.901459] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.112091] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.271576] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.324615] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.297974] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.305603] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.247253] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.570343] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.037140] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.165771] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.243713] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.271118] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.241333] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.669708] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.835266] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.357849] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.643250] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.924011] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.314423] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.995422] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.859985] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.462524] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.857300] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.261414] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.620789] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.639587] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.579407] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.119751] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.526367] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.900757] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.383118] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.832214] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.947571] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.269714] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.028687] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.592651] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.087341] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.513000] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.378967] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.368652] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.995850] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.480164] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.993408] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.477722] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.317871] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.138184] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.892761] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.303955] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.838257] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.351135] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.087158] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.769043] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.188599] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.557739] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.782898] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.972168] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.611389] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.818909] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.323303] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.795410] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.380554] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.883972] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.399719] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.887634] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.217285] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.376587] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.514221] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.804077] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.958313] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.341064] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.287903] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.228210] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.260132] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.025024] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.647766] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.241638] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.804871] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.403687] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.038330] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.581421] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.849121] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.106506] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.268005] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.610840] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.932312] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.179016] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.203857] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.106934] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.082520] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.064941] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.105347] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.111694] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.917786] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.604187] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.253601] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.811646] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.380920] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.924866] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.394897] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.962708] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.525024] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.858276] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.144165] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.353516] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.494507] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.700867] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.792480] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.892883] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.916382] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.934143] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.840881] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.646545] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.439453] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.201721] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.978333] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.743103] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.402954] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.991638] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.545593] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.049988] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.470764] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.881104] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.243652] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.543457] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.821167] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.053223] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.238647] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.384949] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.489624] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.554810] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.578796] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.561401] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.502380] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.397400] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.243835] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.056763] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.799438] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.442139] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.092896] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.698425] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.273987] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.806152] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.319885] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.775269] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.015686] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.280334] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.565918] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.842468] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.947388] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.932007] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.997498] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.121704] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.236816] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.018677] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.754272] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.636292] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.506165] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.414795] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.008545] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.678101] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.347778] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.045105] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.706665] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.326660] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.995850] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.464233] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.972473] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.477722] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.913086] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.305908] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.610657] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.995056] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.247009] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.630737] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.012878] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.493835] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.798401] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.999695] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.249451] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.628540] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.093384] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.538879] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.993103] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.472168] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.904358] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.399780] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.973816] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.479614] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.905762] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.357117] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.861389] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.390808] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.024231] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.684631] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.517639] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.293823] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.998352] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.820251] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.678406] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.650635] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.620850] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.678650] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.757751] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.924744] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.155212] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.445496] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.774658] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.156677] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.642822] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.185364] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.806885] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.491272] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.265381] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.110535] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.025085] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.018311] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.094910] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.243530] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.494080] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.852661] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.280884] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.765015] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.326965] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.975403] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.679749] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.575684] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.613159] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.609619] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.726868] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.883728] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.143494] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.432495] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.826965] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.404236] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.923340] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.507874] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.197693] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.943298] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.766663] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.674866] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.962891] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.171875] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.287842] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.659485] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.061951] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.843262] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.997864] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.686768] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.431030] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.300293] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.939453] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.535156] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.343262] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.124451] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.155029] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.167847] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.215820] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.208923] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.267029] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.352417] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.631653] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.862915] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.895813] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.934753] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.577148] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.193420] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.710022] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.174561] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.691223] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.137512] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.945190] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.497009] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.911438] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.466919] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.917908] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.344849] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.904114] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.645142] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.221497] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.146912] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.932007] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.622131] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.589722] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.241028] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.773804] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.709595] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.797852] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.694763] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.436279] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.224731] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.210022] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.372559] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.134094] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.386902] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.435852] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.727295] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.894531] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.173157] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.650513] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.665100] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.577209] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.735107] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.623840] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.116516] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.612549] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.201965] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.873169] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.951843] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.455750] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.086670] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.961060] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.675049] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.587891] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.360657] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.733276] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.299133] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.663818] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.226563] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.438416] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.850464] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.212219] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.336487] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.823547] [T/O: true ][Cruise: false ] +[Elevator: 0.105978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.872253] [T/O: true ][Cruise: false ] +[Elevator: 0.095978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.118469] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.064148] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.389832] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.321167] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.394287] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.334412] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.446350] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.133301] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.999756] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.802124] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.527832] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.409180] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.097656] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.845459] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.289185] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.600830] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.817017] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.139282] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.325439] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.542236] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.772949] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.817261] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.790771] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.642212] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.560425] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.285034] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.895264] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.470581] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.014648] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.476196] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.858887] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.192627] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.351563] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.463379] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.522583] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.419434] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.286377] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.076660] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.749268] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.302979] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.821533] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.208740] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.481812] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.663452] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.729370] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.691650] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.551880] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.315430] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.990967] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.561646] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.993530] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.274536] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.467773] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.523560] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.545410] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.374023] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.123535] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.775269] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.272339] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.733521] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.960449] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.202881] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.912354] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.841675] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.791138] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.602295] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.282227] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.737915] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.176270] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.417969] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.649658] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.787231] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.047241] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.005737] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.797729] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.648315] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.334595] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.768799] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.322571] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.774719] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.038025] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.045898] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.249878] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.208313] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.092896] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.843872] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.783569] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.490540] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.182556] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.313354] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.376099] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.945618] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.000366] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.006958] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.091370] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.155334] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.992126] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.155579] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.920410] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.619385] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.627380] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.567017] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.320129] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.910889] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.463806] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.842773] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.989075] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.608887] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.240479] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.913391] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.438293] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.844116] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.291931] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.010132] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.886475] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.552246] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.164856] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.156128] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.364563] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.897949] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.382263] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.278687] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.869080] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.526001] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.454590] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.386597] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.324890] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.735352] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.267517] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.148193] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.307251] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.623657] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.201355] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.984802] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.976746] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.202454] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.674194] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.357788] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.210571] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.260010] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.547913] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.023682] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.753052] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.719482] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.919556] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.345337] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.976807] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.782166] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.906250] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.201599] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.656738] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.321472] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.264771] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.429138] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.748474] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.265259] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.020386] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.000732] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.111877] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.480347] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.087524] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.045227] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.940613] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.928711] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.327942] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.757385] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.787354] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.966553] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.997803] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.994507] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.248413] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.722412] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.236145] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.844482] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.686890] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.846375] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.279907] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.041138] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.483765] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.814026] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.311768] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.868469] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.407593] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.599854] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.292725] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.573242] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.542114] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.323486] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.099304] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.296021] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.688965] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.742554] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.666870] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.020508] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.954224] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.202942] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.642395] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.895142] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.381592] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.306274] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.344482] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.295044] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.406494] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.376587] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.569824] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.033081] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.000610] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.165405] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.173706] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.512695] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.436646] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.704956] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.031738] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.787354] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.443848] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.424194] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.600342] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.890869] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.211914] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.209351] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.739868] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.806763] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.528076] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.261719] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.288818] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.273193] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.725952] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.860596] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.766479] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.670532] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.145630] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.831177] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.189697] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.236206] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.586548] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.763062] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.833740] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.872559] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.654663] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.244263] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.733643] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.566162] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.870850] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.477661] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.543701] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.697876] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.904541] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.016724] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.972412] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.791138] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.567017] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.996460] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.658447] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.974121] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.288574] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.344116] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.231201] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.076294] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.932983] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.544678] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.049316] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.472290] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.862671] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.176270] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.466431] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.652832] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.591064] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.261108] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.975464] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.473267] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.886108] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.167847] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.328369] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.357910] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.258789] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.073120] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.742432] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.274170] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.679688] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.978882] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.155762] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.204834] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.125122] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.917725] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.537231] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.012573] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.351074] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.623291] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.698486] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.685791] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.435913] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.112793] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.669067] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.138428] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.308594] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.334473] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.221924] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.903564] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.497192] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.868042] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.219727] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.272583] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.009399] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.698608] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.210815] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.772095] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.138184] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.213257] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.889893] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.488037] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.763184] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.028809] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.081543] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.398560] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.195313] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.280273] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.773193] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.830688] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.228394] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.035278] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.082031] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.053101] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.784546] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.361816] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.254028] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.779541] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.788940] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.029419] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.032349] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.990112] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.590942] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.549316] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.386475] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.665771] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.751465] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.442017] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.463013] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.924927] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.860962] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.901489] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.955078] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.850586] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.482666] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.060303] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.078979] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.623291] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.647217] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.795776] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.182007] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.558594] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.702454] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.171814] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.501404] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.526611] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.248352] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.668945] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.191772] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.156616] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.092407] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.184265] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.294250] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.001648] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.941467] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.482666] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.876282] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.955383] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.121216] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.688965] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.702454] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.543579] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.720581] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.490540] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.095093] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.672668] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.744202] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.121948] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.982300] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.880798] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.256226] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.592102] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.893738] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.913025] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.414307] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.402405] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.790283] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.509766] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.183899] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.619690] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.903992] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.523010] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.233093] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.968994] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.786438] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.078674] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.840820] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.749573] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.928894] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.586609] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.603333] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.967041] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.713318] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.829041] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.278992] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.113770] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.354248] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.996216] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.028748] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.431091] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.292358] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.713562] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.568359] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.628784] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.818481] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.488464] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.421814] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.612549] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.370483] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.504700] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.067017] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.485413] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.083130] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.476318] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.362061] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.104187] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.224609] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.541077] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.104736] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.047302] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.156738] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.073242] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.527344] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.374146] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.066101] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.913147] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.092896] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.583435] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.490417] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.466492] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.971863] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.606140] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.042297] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.176636] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.661804] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.484314] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.449280] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.011475] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.989990] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.087830] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.643433] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.035583] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.826294] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.460999] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.086060] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.877747] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.224487] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.370789] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.898438] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.649292] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.178955] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.466675] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.663635] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.511047] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.562378] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.705078] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.392090] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.923340] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.069580] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.359741] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.892090] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.323486] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.818359] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.507813] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.894531] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.931396] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.263184] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.001343] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.829956] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.586060] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.221436] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.208130] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.342407] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.638184] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.526367] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.350708] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.322266] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.173462] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.911133] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.628174] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.230713] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.000244] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.388916] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.708496] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.757935] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.223022] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.360474] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.138062] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.368774] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.392944] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.794678] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.560791] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.880127] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.049438] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.346436] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.668457] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.630737] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.855591] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.690918] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.039795] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.446411] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.760010] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.730591] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.681641] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.156250] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.949829] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.896362] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.697388] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.282227] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.680542] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.214111] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.276001] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.727783] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.177002] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.354248] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.302002] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.811157] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.477783] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.024780] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.209106] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.111572] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.902344] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.252075] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.484741] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.483032] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.227539] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.742676] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.029419] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.096313] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.932739] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.540894] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.903564] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.036621] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.894287] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.414795] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.846924] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.078003] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.071167] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.426147] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.949097] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.170166] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.389160] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.610352] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.465210] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.040527] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.705566] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.213501] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.630249] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.503784] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.413452] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.972656] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.404297] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.734741] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.688965] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.050415] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.206787] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.425293] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.376709] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.336670] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.789307] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.272827] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.380981] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.357178] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.385986] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.605713] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.308228] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.266479] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.394897] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.094360] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.272095] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.111694] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.938599] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.008057] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.955444] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.504883] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.138794] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.566528] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.620117] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.556641] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.408813] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.163574] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.121704] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.827759] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.124512] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.313110] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.374268] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.439697] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.662720] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.373535] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.271240] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.253418] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.649414] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.872681] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.594116] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.826660] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.460022] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.472900] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.214539] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.248840] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.486694] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.572021] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.191406] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.627258] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.495850] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.760010] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.297180] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.425171] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.230286] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.127380] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.716736] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.117310] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.911804] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.670288] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.200012] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.355103] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.751343] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.750671] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.745117] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.520325] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.681885] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.448669] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.144348] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.851685] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.156372] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.273560] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.856628] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.725769] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.640289] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.156982] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.854828] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.364319] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.535583] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.286896] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.241913] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.868408] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.082062] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.289948] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.966766] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.716492] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.967224] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.327911] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.084869] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.067139] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.683350] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.243286] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.732666] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.917816] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.762970] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.520111] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.124237] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.490692] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.922363] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.992493] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.447327] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.722595] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.697113] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.476929] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.651215] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.428314] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.064941] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.844818] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.774658] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.697632] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.640900] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.020020] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.640015] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.481110] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.325317] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.935577] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.633759] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.795837] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.048950] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.647217] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.071838] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.316956] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.163208] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.964539] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.372742] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.558472] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.102844] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.173584] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.637756] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.481018] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.937134] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.182312] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.641357] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.396057] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.991638] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.952759] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.973328] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.883850] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.681641] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.398071] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.005981] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.259766] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.135498] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.200317] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.755371] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.898376] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.819946] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.896484] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.809875] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.392395] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.957275] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.614929] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.314941] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.525757] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.938904] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.991638] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.104858] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.085144] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.138000] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.327148] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.138733] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.692688] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.648926] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.399414] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.901978] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.488037] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.378174] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.178101] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.972900] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.065674] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.830200] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.688354] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.988037] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.699463] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.438843] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.970825] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.919678] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.362427] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.505127] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.994751] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.906494] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.552246] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.052856] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.672119] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.032593] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.401123] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.579102] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.192749] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.199951] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.850708] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.848389] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.266113] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.819214] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.312378] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.328735] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.829346] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.989990] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.438110] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.711670] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.733398] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.595093] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.427124] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.766602] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.784302] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.668701] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.933960] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.146362] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.119995] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.053833] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.545166] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.075806] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.513550] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.463013] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.170532] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.664063] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.026978] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.264526] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.313965] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.180664] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.845337] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.320923] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.520996] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.532471] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.369995] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.026245] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.509766] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.827515] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.947998] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.875244] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.560547] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.042603] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.522705] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.752197] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.882813] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.558472] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.193237] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.288940] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.640137] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.830444] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.796753] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.733887] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.524292] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.175537] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.266113] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.273438] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.411621] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.153564] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.544678] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.654663] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.781982] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.819580] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.838623] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.507446] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.771851] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.701904] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.582275] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.706909] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.998291] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.268677] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.446411] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.290527] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.675293] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.212891] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.863159] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.086426] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.515747] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.274536] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.135620] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.917847] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.062134] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.485718] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.141235] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.910278] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.221558] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.290527] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.611450] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.616577] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.303589] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.536072] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.275208] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.505615] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.525024] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.008057] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.075684] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.084106] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.252869] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.456787] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.230774] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.807983] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.960571] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.240906] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.912109] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.628540] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.036499] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.037903] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.808533] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.064758] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.981689] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.676514] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.792847] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.629456] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.122559] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.277832] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.838684] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.578125] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.787781] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.118958] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.690186] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.229980] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.884888] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.317535] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.370331] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.190247] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.124969] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.590149] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.412231] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.647003] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.562592] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.836731] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.790283] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.039368] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.961975] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.671875] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.302643] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.294632] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.375305] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.056641] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.385056] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.490509] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.410583] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.423004] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.335434] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.738251] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.318237] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.411972] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.182968] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.431107] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.512894] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.337738] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.031631] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.631500] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.215210] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.655472] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.385681] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.129822] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.786575] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.395630] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.089005] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.069458] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.730240] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.920059] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.116379] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.667221] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.718781] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.654526] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.264069] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.025253] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.327393] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.547424] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.243011] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.551117] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.352814] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.816681] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.626282] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.520844] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.201172] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.919281] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.560699] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.950592] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.174286] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.810181] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.608521] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.355316] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.673615] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.635254] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.175446] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.563782] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.620544] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.997375] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.376038] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.929688] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.041443] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.048401] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.394226] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.953308] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.358521] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.749573] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.328735] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.445801] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.065613] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.081482] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.931213] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.081970] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.008484] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.932190] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.562927] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.265198] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.487793] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.709839] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.397583] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.714172] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.063721] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.880371] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.137268] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.117859] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.771179] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.924866] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.931519] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.745361] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.057739] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.191833] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.215881] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.183167] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.023438] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.383972] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.515442] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.269409] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.324829] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.814026] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.061584] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.895508] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.761658] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.076050] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.557983] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.912964] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.934326] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.825195] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.384033] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.979858] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.374878] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.159058] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.915771] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.517334] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.782959] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.718750] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.568237] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.230347] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.527222] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.580933] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.411377] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.148315] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.680176] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.917725] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.899536] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.604736] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.128662] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.376831] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.383789] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.160645] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.698853] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.024658] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.099731] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.933350] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.517090] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.509766] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.142212] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.901489] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.498047] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.948486] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.970093] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.793579] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.919556] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.864014] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.895142] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.846802] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.741943] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.221558] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.688477] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.078735] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.533691] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.611328] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.628418] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.654297] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.748535] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.509766] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.180054] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.971802] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.413330] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.871338] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.884277] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.641296] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.947266] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.062561] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.168457] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.140808] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.882202] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.184631] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.949524] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.365112] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.923950] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.350281] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.926392] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.166321] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.312561] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.245850] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.634705] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.401428] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.941162] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.610168] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.002747] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.511658] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.911987] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.269226] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.793762] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.272095] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.814514] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.613098] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.887207] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.895935] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.841797] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.600708] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.841125] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.612915] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.770630] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.724915] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.086975] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.741699] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.402954] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.372498] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.981506] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.592590] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.828796] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.120605] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.100220] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.172058] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.764374] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.004425] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.235107] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.421204] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.781219] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.667938] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.147461] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.275726] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.107788] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.687683] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.076782] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.024170] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.935516] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.469818] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.920807] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.846130] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.054626] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.233078] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.693787] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.413452] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.947403] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.479477] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.683014] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.701492] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.242401] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.423141] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.727997] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.744629] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.631393] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.813538] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.192505] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.675316] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.528801] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.009689] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.238823] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.185074] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.865913] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.298088] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.421089] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.184906] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.714340] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.095757] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.160507] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.807335] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.672791] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.383255] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.356094] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.209564] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.930725] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.197983] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.848511] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.362671] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.616852] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.071304] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.987274] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.583191] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.925659] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.915558] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.524689] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.295624] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.510101] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.456360] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.820892] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.732269] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.773743] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.803650] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.151337] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.761444] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.446228] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.831512] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.313049] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.659698] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.966553] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.571869] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.119385] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.763275] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.744415] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.449738] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.993683] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.160950] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.483826] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.706482] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.755005] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.018188] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.730774] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.362244] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.048340] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.114014] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.647522] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.339478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.887695] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.750061] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.707214] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.507690] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.386475] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.455383] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.211975] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.172302] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.319458] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.321350] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.486572] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.402222] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.145081] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.630798] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.178162] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.477234] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.337524] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.977905] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.066040] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.687866] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.868835] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.725220] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.394592] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.624939] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.169434] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.303589] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.351868] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.196350] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.053894] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.444397] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.925293] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.953979] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.281860] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.362976] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.284790] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.179565] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.961304] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.446716] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.720459] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.626953] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.549866] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.098694] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.463501] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.448730] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.396667] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.173645] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.553833] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.875977] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.832397] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.351074] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.076904] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.557251] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.433838] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.631470] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.435425] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.979370] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.304810] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.270630] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.958984] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.410400] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.546753] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.419922] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.005615] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.256592] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.215210] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.867432] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.208130] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.272461] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.937866] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.364624] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.443359] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.379395] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.001343] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.152344] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.172119] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.792847] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.249512] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.220093] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.013062] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.709961] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.197632] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.310181] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.233154] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.763306] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.089478] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.205200] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.039612] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.506653] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.164368] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.168579] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.307007] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.927979] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.005920] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.065430] [T/O: false ][Cruise: true ] +[Elevator: -0.204022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.927612] [T/O: false ][Cruise: true ] +[Elevator: -0.194022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.117065] [T/O: false ][Cruise: true ] +[Elevator: -0.184022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.883545] [T/O: false ][Cruise: true ] +[Elevator: -0.174022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.614136] [T/O: false ][Cruise: true ] +[Elevator: -0.164022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.845276] [T/O: false ][Cruise: true ] +[Elevator: -0.154022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.013367] [T/O: false ][Cruise: true ] +[Elevator: -0.144022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.664673] [T/O: false ][Cruise: true ] +[Elevator: -0.134022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.184082] [T/O: false ][Cruise: true ] +[Elevator: -0.124022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.492798] [T/O: false ][Cruise: true ] +[Elevator: -0.114022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.708557] [T/O: false ][Cruise: true ] +[Elevator: -0.104022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.358948] [T/O: false ][Cruise: true ] +[Elevator: -0.094022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.994385] [T/O: false ][Cruise: true ] +[Elevator: -0.084022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.285706] [T/O: false ][Cruise: true ] +[Elevator: -0.074022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.617798] [T/O: false ][Cruise: true ] +[Elevator: -0.064022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.128296] [T/O: false ][Cruise: true ] +[Elevator: -0.054022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.714661] [T/O: false ][Cruise: true ] +[Elevator: -0.044022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.897888] [T/O: false ][Cruise: true ] +[Elevator: -0.034022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.310547] [T/O: false ][Cruise: true ] +[Elevator: -0.024022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.912903] [T/O: false ][Cruise: true ] +[Elevator: -0.014022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.802368] [T/O: false ][Cruise: true ] +[Elevator: -0.004022] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.279236] [T/O: false ][Cruise: true ] +[Elevator: 0.005978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.857971] [T/O: false ][Cruise: true ] +[Elevator: 0.015978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.556458] [T/O: false ][Cruise: true ] +[Elevator: 0.025978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.864258] [T/O: false ][Cruise: true ] +[Elevator: 0.035978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.148193] [T/O: false ][Cruise: true ] +[Elevator: 0.045978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.685852] [T/O: false ][Cruise: true ] +[Elevator: 0.055978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.401489] [T/O: false ][Cruise: true ] +[Elevator: 0.065978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.206909] [T/O: false ][Cruise: true ] +[Elevator: 0.075978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.883667] [T/O: false ][Cruise: true ] +[Elevator: 0.085978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.551514] [T/O: false ][Cruise: true ] +[Elevator: 0.095978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.209473] [T/O: false ][Cruise: true ] +[Elevator: 0.105978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.117920] [T/O: false ][Cruise: true ] +[Elevator: 0.115978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.020996] [T/O: false ][Cruise: true ] +[Elevator: 0.125978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.338257] [T/O: false ][Cruise: true ] +[Elevator: 0.135978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.761536] [T/O: false ][Cruise: true ] +[Elevator: 0.145978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.387390] [T/O: false ][Cruise: true ] +[Elevator: 0.155978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.543060] [T/O: false ][Cruise: true ] +[Elevator: 0.165978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.133331] [T/O: false ][Cruise: true ] +[Elevator: 0.175978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.663696] [T/O: false ][Cruise: true ] +[Elevator: 0.185978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.730438] [T/O: false ][Cruise: true ] +[Elevator: 0.195978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.383942] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.295593] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.217010] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.629944] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.452179] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.588898] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.285736] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.791931] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.473419] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.544434] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.278992] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.771545] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.895813] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.977203] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.707626] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.596664] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.858978] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.321869] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.573914] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.519394] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.297501] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.194321] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.433975] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.094635] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.626923] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.468102] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.785484] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.586838] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.916756] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.152479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.142479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.132479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.122479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.112479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.102479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.092479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.082479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.072479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.062479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.052479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.042479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.032479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.022479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.012479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: 0.002479] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.007521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.017521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.027521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.037521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.047521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.057521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.067521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.077521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: false ][Cruise: true ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.087521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.097521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.107521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.117521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.127521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.137521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.147521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.205978] [Roll: -0.157521] [Yaw: 0.508496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.936478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.087328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.098507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113259] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118879] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.132109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134861] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138915] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140559] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142570] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143967] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145138] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145817] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146954] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148088] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148649] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148620] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147665] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147339] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147160] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146289] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140985] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137728] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130016] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117405] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112414] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110358] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107825] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105794] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105667] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106650] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108133] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110001] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112149] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114297] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116203] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125729] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128430] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131266] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136774] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143837] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145237] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146049] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146812] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148241] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148140] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148472] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148633] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149159] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149974] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152549] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153420] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154234] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156309] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158512] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159363] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161991] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162926] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163641] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164008] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163885] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164600] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167756] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167676] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167761] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167895] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168860] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169163] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169885] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171516] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172577] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173699] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174405] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175830] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175621] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176611] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177747] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179705] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181104] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183485] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184621] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186381] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186960] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184610] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183100] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177955] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178888] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180855] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189250] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191035] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192709] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194393] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196326] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198686] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200991] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203173] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205010] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206307] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207242] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208219] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.233226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.257754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.265784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.274781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.293354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.305399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.319276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.334830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.351367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.377777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.405520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.436511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.477090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.527670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.590651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.662607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.746748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.852693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.976289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.111374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.279582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.472730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.683286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.924673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.172722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.477764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.791555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.145960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.494961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.904076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.337074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.830341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.295891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.926786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.524694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.170910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.987934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.842751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.693302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.566002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.502386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.442163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.602186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.813696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.971878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.144836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.410427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.751781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.039253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.408253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.760635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.173630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.667427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.335217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.049950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.918644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.692310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.593506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.532696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.411469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.527073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.568409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.693302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.985153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.119026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.520210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.050682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.618210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.196190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.700508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.337700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.968086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.746117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.521980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.467896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.559898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.533073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.200333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.280708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.375839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.518570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.664459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.157898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.480087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.122398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.362991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.077087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.553131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.039398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.515076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.922089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.031509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.605164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.143784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.354874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.716415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.949203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.871918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.136765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.470688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.043045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.585464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.491287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.998245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.525146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.047607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.559067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.039490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.446625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.701172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.864532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.183731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.577103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.699753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.252670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.559937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.002716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.526871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.037445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.429337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.726303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.781250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.956223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.102386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.400452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.719757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.874878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.676941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.660309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.664917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.511932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.212952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.595703] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.195496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.966888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.957306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.632172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.989716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.723724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.430145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.046692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.394409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.767487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.915283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.101837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.953735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.002899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.182770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.067505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.219849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.292053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.279572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.201904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.043152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.764404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.396545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.884583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.665741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.323578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.761200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.258942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.811279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.052734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.345673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.619781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.980072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.228729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.437042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.600006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.753204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.842041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.904327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.931305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.839447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.804169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.735504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.578369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.414154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.245728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.970032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.642853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.314056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.956329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.571411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.177460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.765015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.302917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.823883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.286713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.724731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.094452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.465271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.807648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.104950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.416046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.671326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.934357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.164520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.389862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.576294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.769989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.947815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.102875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.228790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.334778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.419952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.487762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.543121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.586548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.621490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.643799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.660004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.670074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.675446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.678497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.681396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.686401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.695465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.711029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.730621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.759399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.795471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.848206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.914978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.006317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.111023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.251373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.400513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.584290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.791382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.050446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.332062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.645935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.003845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.411255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.879578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.360291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.823303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.309906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.851593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.383667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.018311] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.619202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.364288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.122559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.931854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.806396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.765350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.759064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.806976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.881409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.196136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.456573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.899170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.428284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.028229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.679932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.413300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.794098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.300903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.478790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.682220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.055420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.299286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.561981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.907959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.161316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.530579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.025879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.446533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.793610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.169037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.432251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.846832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.349487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.303070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.128845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.101105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.892792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.889313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.006500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.188019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.192993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.207947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.139618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.364380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.328949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.304230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.455872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.464844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.197479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.154480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.110992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.006409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.145081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.264404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.234619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.326965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.086975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.732483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.472229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.175598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.885803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.538757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.194763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.107605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.772461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.500244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.579224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.255676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.822693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.470520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.087463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.651001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.318970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.848206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.421448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.983276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.467407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.095032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.640503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.372498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.222961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.813232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.310181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.741821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.304871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.644226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.978943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.361694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.825195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.297974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.759277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.973389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.207764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.430054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.738892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.335876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.916748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.282715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.798279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.292847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.934143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.137329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.243042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.201294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.247131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.281494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.345398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.351746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.306091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.316895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.457214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.474548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.294250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.308594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.127441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.851379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.468079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.035645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.560730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.059631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.522766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.002930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.446106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.858276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.237549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.621521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.950500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.220947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.533447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.752808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.033936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.148560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.266663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.358765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.385010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.388977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.361450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.304382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.232239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.125916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.047913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.928284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.768066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.567627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.337036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.080994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.858093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.588928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.297485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.007813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.662964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.299805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.940002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.553772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.155029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.756226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.368164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.997070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.601868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.164734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.741394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.325317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.879272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.445679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.048096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.630188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.230896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.806030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.384216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.953064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.531128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.109070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.710754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.314209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.934387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.745544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.439453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.143799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.827881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.543518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.259766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.010376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.777527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.502075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.264893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.027588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.717407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.533508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.367981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.261658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.171021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.052795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.876892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.784729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.724915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.686340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.542297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.506775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.600769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.649841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.814758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.949341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.029480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.137268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.300720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.629944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.888245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.196411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.518494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.945557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.224609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.466675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.767700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.072876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.523743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.976013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.394592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.880920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.331543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.730774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.098816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.585388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.908386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.433777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.987122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.308899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.891418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.575073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.367188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.042053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.868042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.648926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.516907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.184509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.865051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.572937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.556274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.418274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.215271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.300537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.184082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.082581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.900452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.832336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.866699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.939575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.895996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.901611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.022156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.184021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.390808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.604065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.770325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.884460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.216614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.501709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.822693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.160767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.444275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.752319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.094666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.528687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.894104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.337524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.725037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.192383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.779419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.247498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.658508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.868774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.139709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.729614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.946167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.234192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.720459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.094055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.562195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.024719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.373535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.851318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.280396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.699097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.854126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.014587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.352600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.703796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.982788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.210754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.488037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.652283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.932373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.252625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.496826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.748047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.937866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.107544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.288635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.498962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.714111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.889343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.954773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.078552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.889404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.835876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.920837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.013000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.032471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.038147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.816223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.672241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.640198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.633057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.584595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.525757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.384094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.221191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.041748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.988647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.874512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.703247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.479004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.372864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.451660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.210205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.938477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.509033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.067993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.505005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.059143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.446472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.015930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.405090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.882263] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.265198] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.752197] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.178833] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.093506] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.584961] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.049805] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.421814] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.842224] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.218262] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.460144] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.680786] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.029419] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.336365] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.655640] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.904480] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.105469] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.287964] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.317505] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.375122] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.329834] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.279419] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.148682] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.992432] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.849731] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.674683] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.298950] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.880737] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.413818] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.930542] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.319946] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.653931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.925659] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.119385] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.218018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.244263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.184937] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.036621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.412720] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.942871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.352173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.687866] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.825684] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.832642] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.893066] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.701660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.488525] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.173706] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.657471] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.202515] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.584229] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.867737] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.999573] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.278748] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.218079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.888550] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.828613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.424866] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.056335] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.729431] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.398010] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.892334] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.377563] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.672058] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.823792] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.821350] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.944946] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.937561] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.177551] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.423035] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.254700] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.950378] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.176941] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.771606] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.276489] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.441772] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.234619] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.716858] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.142517] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.980347] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.171265] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.137695] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.822571] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.194397] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.145508] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.007935] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.303040] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.370300] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.329163] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.279053] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.482483] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.493164] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.038391] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.477966] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.287598] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.974243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.855103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.078247] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.424011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.835510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.432861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.082703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.102844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.229248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.596863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.260620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.104675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.186890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.523621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.077393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.859131] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.926331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.099548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.485962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.229980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.285461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.533386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.821838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.453491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.209961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.044189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.426697] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.078125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.863159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.555725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.398010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.738708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.945313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.645813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.539856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.623596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.895264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.481567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.051270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.681946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.529297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.235229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.047424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.046143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.518311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.553711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.978027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.293030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.258240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.478088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.532104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.683105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.094849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.943726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.517334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.234253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.758301] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.358765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.618896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.963623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.011841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.742798] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.062134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.646240] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.062378] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.511475] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.094360] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.710449] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.180298] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.758789] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.180054] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.411499] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.829834] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.937866] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.323364] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.387207] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.741943] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.738403] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.330322] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.979980] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.193481] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.572876] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.037109] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.187988] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.767822] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.876465] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.878662] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.860718] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.623047] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.411987] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.825439] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.249756] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.726074] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.973022] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.941284] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.893311] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.971069] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.690796] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.461548] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.908081] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.428101] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.543213] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.516846] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.598267] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.460815] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.445557] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.619263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.219727] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.964844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.518066] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.136597] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.389893] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.459473] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.396973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.219116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.918701] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.543457] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.066162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.190918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.309082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.091431] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.971313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.762695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.376343] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.718384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.759277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.905518] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.885742] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.664795] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.296753] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.715698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.984619] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.107788] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.059326] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.838745] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.445068] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.874146] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.211914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.361084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.276489] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.108398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.622559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.899414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.093018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.709717] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.487671] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.901489] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.968628] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.900513] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.637695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.643433] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.623169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.235718] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.829956] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.206665] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.567261] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.848999] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.803467] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.091187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.348877] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.094116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.852539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.930054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.363281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.960083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.310059] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.048950] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.657593] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.674805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.729248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.560181] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.043579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.540527] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.353638] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.746826] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.244263] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.769775] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.836670] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.144653] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.893433] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.796631] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.570435] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.242798] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.316650] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.778687] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.449951] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.154663] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.012573] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.833130] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.935547] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.908447] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.457275] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.027466] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.965576] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.459595] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.474609] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.534424] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.376587] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.977905] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.702759] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.539612] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.723633] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.191284] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.546692] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.755371] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.622742] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.969849] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.444824] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.027161] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.631897] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.191772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.860229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.707764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.228394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.836487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.669189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.493286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.255676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.636108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.456299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.508667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.419739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.201843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.444153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.044678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.324768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.180786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.533264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.402222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.798462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.699158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.134888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.043762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.363892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.027161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.244812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.735413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.956726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.327576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.489502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.034729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.557983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.772644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.069458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.937805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.949585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.270081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.689758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.136169] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.937988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.822205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.071106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.354492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.054443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.796570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.915344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.961548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.799194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.530823] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.029297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.295410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.372864] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.147217] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.695190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.387085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.047119] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.579834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.793091] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.943970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.267700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.565308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.786377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.263184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.564453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.903320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.313477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.573242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.291016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.539429] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.813599] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.983276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.474609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.664673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.520874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.584473] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.490601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.510620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.301147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.985352] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.356567] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.684814] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.977051] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.309326] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.179565] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.069214] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.976318] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.622925] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.541260] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.206665] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.747559] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.951660] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.972534] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.547485] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.694702] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.690674] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.806030] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.492310] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.951782] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.539063] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.040894] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.282471] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.157837] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.996826] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.738892] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.152710] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.002808] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1473.636963] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1478.969604] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.179688] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.378540] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.358032] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.093628] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1503.818604] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.416626] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.850586] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1517.085938] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.283813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1525.491943] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1529.520142] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.250854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.007935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.611572] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1543.969849] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.219360] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.427734] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.351074] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.235962] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.069702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.781494] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.318726] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.728516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.951172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.332031] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1573.371094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1575.341064] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.093140] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.790283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.401123] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.879028] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.225952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.432617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.516602] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.506714] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1587.401001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.159058] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.797241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.305542] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.718750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.018799] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.211426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.277466] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.226685] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.048340] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.747559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.329956] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.317261] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.874023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.619263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.634888] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.557617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1582.254517] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.540283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.736450] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.690918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.556885] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1569.639282] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.806763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.364624] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.359375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1555.427368] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.919678] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.358765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1541.749634] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1536.416260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.665527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.963013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.505127] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1516.973389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.603638] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.252563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1504.102905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.930298] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.617432] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.368408] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1486.662354] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.573730] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.063599] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.961060] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.702148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.009644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.324829] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.331787] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.107178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.961548] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.445313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.772339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.097412] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.116211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.848389] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.184082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.631104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.546997] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.243164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.460693] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.933228] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.186279] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.188721] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.244751] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.216309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.929565] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.397095] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.533447] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.016113] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.491211] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.025146] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.408447] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.580078] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.747925] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.731812] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.515381] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.940674] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.413086] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.259521] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.436401] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.208130] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.597656] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.462402] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.969604] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.687134] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.294800] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.509399] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.178467] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.936218] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.059204] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.826904] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.519531] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.897339] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.948975] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.193909] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.048401] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.765930] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.260864] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.437988] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.144165] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.033447] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.215698] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.879456] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.266968] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.936584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.142639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.895691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.828918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.188416] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.019775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.609253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.603333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.030518] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.062195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.616821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.902344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.299561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.637573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.950500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.769226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.817078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.683472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.709564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.564636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.446014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.194000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.813507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.645142] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.557434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.573486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.431946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.186798] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.690399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.844818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.018250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.074982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.939941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.714935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.218323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.559357] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.653076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.471069] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.987885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.259857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.485840] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.312225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.796234] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.739258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.308441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.788330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.264801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.250031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.208466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.081512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.330444] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.049469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.069702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.057404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.185455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.761566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.168427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.715393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.084656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.316467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.470581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.230042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.611084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.574402] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.445190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.935669] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.548096] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.087036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.167542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.977966] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.042419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.110596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.257141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.921936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.843079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.678528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.999817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.852661] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.374817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.682922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.560242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.920837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.237000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.373535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.240845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.168091] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.656799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.055542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.522644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.308777] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.380676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.476196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.465454] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.576965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.074890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.905396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.175171] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.823914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.816101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.379883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.503174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.517700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.041504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.934570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.392090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.051758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.485107] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.735107] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.262817] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.011597] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.848877] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.224487] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.283569] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.404907] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.339844] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.174805] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.470215] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.766113] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.743530] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.496094] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.853271] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.137939] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.062866] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.857666] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.349731] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.632813] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.640503] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.482422] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.323853] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.172119] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.983643] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.446899] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.169067] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.750244] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.424805] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.049927] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.318604] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.221313] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.858765] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.613159] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.019897] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.021973] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.666504] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.925781] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.817871] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.324707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.447388] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.230835] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.630005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.627930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.343506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.672852] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.670044] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.493286] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.961182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.949707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.634521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.789185] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.949707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.474365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.788574] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.632324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.765015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.380127] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.170532] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.410645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.779663] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.560059] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.251221] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.543213] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.674194] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.354736] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.907837] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.969482] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.935425] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.404419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.771606] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.531006] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.651855] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.152832] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.015381] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.909790] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.226196] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.542969] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.602051] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.263550] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.753784] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.994385] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.023682] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.016357] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.671143] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.595459] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.190796] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.003174] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.144897] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.063477] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.531128] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.396179] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.567566] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.833740] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.548828] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.334290] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.052246] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.876282] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.022522] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.037354] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.233643] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.842712] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.366638] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.503052] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.086487] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.100281] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.977051] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.110657] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.886169] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.991028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.563354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.228821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.237366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.070557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.471313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.450317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.586670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.948486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.962128] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.328003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.368713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.871063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.644623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.709259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.243530] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.579651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.428131] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.006012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.546478] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.472412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.574432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.944183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.459778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.043488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.769165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.439224] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.144760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.373642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.678360] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.283920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.861801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.654816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.467133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.376923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.263519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.060226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.863785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.378677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.764832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.059540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.971863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.723907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.878662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.622665] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.050919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.392822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.263748] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.800507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.072296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.773407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.194916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.513855] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.796967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.512054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.593872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.204254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.790771] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.111023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.288574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.424438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.925598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.561707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.887878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.352295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.446320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.005615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.100647] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.362915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.068512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.482300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.636353] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.662720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.928650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.637512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.919189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.735779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.893433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.396057] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.778564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.472290] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.149292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.989624] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.205688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.524475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.962891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.382385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.294006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.161743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.032227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.440613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.659851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.220581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.668884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.053101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.563477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.718445] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.273743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.816528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.439087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.235596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.919556] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.670532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.790100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.237244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.869019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.346191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.095520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.523804] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.921570] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.810974] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.808594] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.391174] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.416138] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.129944] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.324219] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.625977] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.957520] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.151367] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.806641] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.322144] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.508423] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.171875] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.392212] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.109863] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.902466] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.333862] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.582275] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.539551] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.333374] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.916260] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.375854] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.341553] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.078247] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.474609] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.548462] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.549438] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.207886] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.702393] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.880981] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.886963] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.510010] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.898682] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.036133] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.911377] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.477539] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.756958] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.726196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.401855] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.852173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.013428] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.901611] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.506104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.840454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.878540] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.648804] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.179688] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.629395] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.562988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.331177] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.261841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.330078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.858887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.248047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.363159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.541748] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.032959] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.731812] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.998047] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.871216] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.561768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.614746] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.774414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.832642] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.708618] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.242554] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.426270] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.411987] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.435791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.739990] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.189575] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.127930] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.058228] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.589539] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.046997] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.069580] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.695862] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.433838] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.123779] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.055176] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.770691] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.669495] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.810120] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.384705] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.955627] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.842712] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.785950] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.453979] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.464172] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.689636] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.735168] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.147949] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.822632] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.249878] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.900452] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.555908] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.411682] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.156921] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.262390] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.031494] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.544128] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.346863] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.313232] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.798279] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.789856] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.375916] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.672913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.831970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.372375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.402710] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.963135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.302612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.488525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.505432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.646484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.972809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.361572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.082672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.789642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.632324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.141052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.211548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.258179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.916748] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.857025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.407928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.600616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.753418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.575317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.376343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.149887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.959045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.827911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.847427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.837128] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.092499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.472153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.007477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.713226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.613510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.866379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.944595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.142776] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.313187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.310318] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.112717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.699356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.726379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.222198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.364990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.613525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.034592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.578873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.126129] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.338913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.923721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.092743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.588730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.712570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.984863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.861267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.875702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.691895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.311249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.578644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.755005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.785339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.069946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.192749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.405273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.205200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.395538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.827911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.841309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.524658] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.977844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.719696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.734589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.010925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.378357] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.395142] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.502441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.571716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.443359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.490723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.773926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.787048] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.695984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.790100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.988708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.664734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.978333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.930603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.226624] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.132568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.845215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.774231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.307861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.695984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.231873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.299561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.256226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.233887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.989319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.531128] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.070496] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.177368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.107971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.253784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.073120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.830505] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.112122] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.654968] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.570984] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.299072] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.986389] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.426086] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.198425] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.544006] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.520081] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.200745] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.710205] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.575562] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.975403] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.699463] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.055481] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.381165] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.257080] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.007324] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.412720] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.687622] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.897827] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.719971] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.910034] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.061768] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.202637] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.602539] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.124146] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.083374] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.364136] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.375122] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.109009] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.759155] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.882690] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.912964] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.608887] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.485718] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.440796] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.109497] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.417236] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.440430] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.210449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.624023] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.296631] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.613892] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.493042] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.003906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.175537] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.127075] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.718140] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.986694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.904053] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.228516] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.620728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.407593] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.906860] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.438477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.684692] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.700806] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.372192] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.770752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.851196] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.730957] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.141479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.393311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.293335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.963379] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.125366] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.233398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.850647] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.325073] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.956909] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.177917] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.500061] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.856506] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.669617] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.848206] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.661926] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.932739] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.309326] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.816162] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.038391] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.229431] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.056396] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.459717] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.671204] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.145386] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.777344] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.743896] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.626160] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.760620] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.138977] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.310852] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.633545] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.030823] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.385315] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.396912] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.946777] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.566956] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.350464] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.045105] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.669128] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.644653] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.854980] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.118225] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.345947] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.211853] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.404419] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.799042] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.229492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.617554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.047333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.801483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.193634] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.255524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.665894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.029755] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.710602] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.467133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.611847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.692780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.479156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.424591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.579224] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.621826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.661240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.773346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.037094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.147232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.123795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.542938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.209946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.963364] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.857788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.215767] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.610893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.578453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.532822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.550560] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.136749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.800323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.365631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.781006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.745926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.544281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.075455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.274055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.135376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.729485] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.919968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.785141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.436348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.533371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.257591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.558876] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.357658] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.876678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.753990] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.400742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.318359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.857086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.811432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.403366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.129333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.524811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.172928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.620499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.481842] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.642776] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.381714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.639389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.032928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.246643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.181763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.955841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.742493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.641846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.342468] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.755554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.394012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.427368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.770111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.824738] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.411865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.898865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.277344] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.606812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.281830] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.088684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.013031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.711273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.869934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.290649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.881042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.668457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.062378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.284973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.736816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.709167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.355164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.448364] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.484192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.036987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.602844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.270203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.665039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.903503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.670105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.822266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.500366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.616760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.366394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.266052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.053040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.906311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.486023] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.455200] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.049683] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.990295] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.147278] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.742920] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.464600] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.676514] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.973816] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.377197] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.821960] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.807800] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.053833] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.772705] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.426208] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.797607] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.006226] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.841919] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.481140] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.872437] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.087830] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.341736] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.654785] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.442200] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.611633] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.894165] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.597900] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.040894] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.639404] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.948486] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.951904] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.165344] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.977661] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.748352] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.238525] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.201538] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.000244] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.604004] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.097412] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.358521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.050049] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.428589] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.547974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.406860] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.032104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.457397] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.289673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.895264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.299927] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.243652] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.936401] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.315369] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.377258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.220642] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.807007] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.102112] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.368713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.041992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.844971] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.867493] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.470093] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.928589] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.983398] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.800598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.223938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.495728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.591309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.628601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.488220] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.391235] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.852295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.303101] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.414734] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.443909] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.340820] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.902527] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.854126] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.090454] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.489136] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.397827] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.061096] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.619446] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.880493] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.862488] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.511230] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.540466] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.558960] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.423279] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.950378] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.138916] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.234497] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.316040] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.301941] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.376465] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.427124] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.739624] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.864380] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.052673] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.890198] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.003601] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.422913] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.166382] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.131836] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.515564] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.045837] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.915649] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.980957] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.615753] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.937103] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.989014] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.909668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.136780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.117950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.787689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.864807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.264343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.961792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.715912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.728302] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.283752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.257599] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.247375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.018372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.152313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.989807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.890884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.038727] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.419952] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.057068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.501572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.181137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.334702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.491837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.701065] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.138294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144114] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144687] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145187] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145657] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146646] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146915] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146720] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146909] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147151] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147413] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147871] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148639] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148528] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148276] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147973] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147046] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146739] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142126] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138649] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134266] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129331] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124115] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112234] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107763] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105467] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104886] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105016] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107961] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110435] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112894] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127770] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131034] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138828] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141308] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144493] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147371] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147344] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149457] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150619] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152672] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153847] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154794] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155568] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156898] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158072] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159135] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160601] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163161] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163655] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163957] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164620] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165180] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166022] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165666] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165137] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164525] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163939] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164719] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167954] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170959] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172536] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173966] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175032] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175969] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176836] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179205] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179935] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179950] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184271] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183056] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181937] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180508] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180977] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182767] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190927] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195216] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195940] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196936] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197879] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198862] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199880] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200670] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201236] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201465] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201418] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201286] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201193] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.248151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.271340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.283545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.311815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.330422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.350859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.375203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.404056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.440315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.483113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.530739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.578820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.641252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.715852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.798027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.881090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.976496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.087154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.207222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.339133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.494381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.664419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.845253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.054386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.281796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.515398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.790098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.084789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.380377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.730165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.093643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.519955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.968929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.460327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.964619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.490788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.082987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.700668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.353855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.068254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.809057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.624441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.455853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.372463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.297533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.308098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.345444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.396929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.607698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.768337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.075703] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.492119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.900639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.434399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.026184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.625740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.427132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.159233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.940228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.011284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.870144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.847271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.931782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.057167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.452412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.616318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.040451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.439453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.861038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.407181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.966560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.520905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.111923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.759933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.270760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.035873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.838745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.520073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.512451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.343422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.252731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.297707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.180939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.168518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.314362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.594276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.897606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.830727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.039063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.048370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.352997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.351807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.663696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.843399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.071426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.097870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.397873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.588684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.838608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.131714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.561508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.017502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.516907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.646042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.039658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.215866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.618637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.928329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.223099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.610901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.994797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.373108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.916977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.055511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.439468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.880722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.125870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.500549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.821899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.960831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.208160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.411163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.494873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.694870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.876129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.040588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.219254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.465866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.380341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.577332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.606018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.522095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.559296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.532898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.539825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.462006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.131256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.995453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.763947] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.394226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.232056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.775208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.341675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.947693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.515594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.055542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.367950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.742950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.119843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.344849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.569366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.879242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.938568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.039124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.192139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.134094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.153351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.121277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.999878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.931183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.665070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.489777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.051422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.714111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.722778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.439301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.052002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.962646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.511566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.892456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.917511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.944672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.062683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.268066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.407440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.478912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.493103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.458527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.356079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.169312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.117279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.805084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.443146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.036987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.590210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.108673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.586884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.036926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.444031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.816803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.161987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.481415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.778015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.044617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.290771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.504395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.699707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.876709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.038208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.186005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.316315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.434326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.542908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.642578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.738312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.832458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.925262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.015869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.108826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.200958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.294769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.390228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.493774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.618652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.735840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.875916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.019165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.170532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.355408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.534058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.754333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.960663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.218445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.461487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.754150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.062134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.370239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.747528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.126831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.505157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.976624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.417023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.900360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.412201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.960815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.494690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.062469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.715363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.431549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.386780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.188263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.044647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.794067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.597076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.797211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.779938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.744751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.834412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.882568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.116241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.407440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.711761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.054840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.509277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.017242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.389099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.899475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.313080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.065979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.870941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.858398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.586304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.402405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.156372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.082642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.211548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.289490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.093872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.383484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.443756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.700928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.220276] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.585907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.085541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.600189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.315430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.850403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.359009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.793518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.475464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.238861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.848877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.370819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.167023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.069458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.802399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.632874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.515991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.420410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.463562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.325409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.347870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.323700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.040009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.912231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.994904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.167908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.185669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.591034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.885101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.156342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.417480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.639343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.643616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.526123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.699341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.652283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.520691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.411316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.256409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.440308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.238281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.055298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.867126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.713501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.390381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.262878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.160889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.946411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.581787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.455322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.142883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.134155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.818298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.823242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.361389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.089783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.836853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.499390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.094421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.977112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.521729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.059753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.607666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.219849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.577087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.875854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.377991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.965759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.200806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.828735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.616272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.947937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.385254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.956055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.528076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.048218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.699280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.117615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.542664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.608337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.864441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.095093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.342041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.529968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.663757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.784973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.832886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.850098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.825684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.317139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.064026] [T/O: true ][Cruise: false ] +[Elevator: -0.293453] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.685425] [T/O: true ][Cruise: false ] +[Elevator: -0.293453] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.225342] [T/O: true ][Cruise: false ] +[Elevator: -0.293453] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.770203] [T/O: true ][Cruise: false ] +[Elevator: -0.313146] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.276550] [T/O: true ][Cruise: false ] +[Elevator: -0.578029] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.804932] [T/O: true ][Cruise: false ] +[Elevator: -0.578029] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.203674] [T/O: true ][Cruise: false ] +[Elevator: -0.578029] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.536133] [T/O: true ][Cruise: false ] +[Elevator: -0.578029] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.892822] [T/O: true ][Cruise: false ] +[Elevator: -0.313146] [Roll: 0.017889] [Yaw: 0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.110962] [T/O: true ][Cruise: false ] +[Elevator: -0.129582] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.232239] [T/O: true ][Cruise: false ] +[Elevator: -0.074325] [Roll: 0.085637] [Yaw: 0.017127] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.338318] [T/O: true ][Cruise: false ] +[Elevator: -0.039249] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.321899] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.166016] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.845154] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.420288] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.803284] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: -0.078060] [Yaw: -0.015612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.043396] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.709606] [Yaw: -0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.132629] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.077026] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.890808] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.569824] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.115295] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.605103] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.979736] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.261047] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.444763] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.552612] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.571716] [T/O: true ][Cruise: false ] +[Elevator: 0.105161] [Roll: -0.768433] [Yaw: -0.153687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.488159] [T/O: true ][Cruise: false ] +[Elevator: 0.137941] [Roll: -0.792223] [Yaw: -0.158445] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.392090] [T/O: true ][Cruise: false ] +[Elevator: 0.163619] [Roll: -0.804172] [Yaw: -0.160834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.152405] [T/O: true ][Cruise: false ] +[Elevator: 0.181207] [Roll: -0.816157] [Yaw: -0.163231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.852051] [T/O: true ][Cruise: false ] +[Elevator: 0.181207] [Roll: -0.816157] [Yaw: -0.163231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.160706] [T/O: true ][Cruise: false ] +[Elevator: 0.208236] [Roll: -0.721296] [Yaw: -0.144259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.678650] [T/O: true ][Cruise: false ] +[Elevator: 0.235987] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.076965] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: -0.259626] [Yaw: -0.051925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.474854] [T/O: true ][Cruise: false ] +[Elevator: 0.323086] [Roll: -0.222025] [Yaw: -0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.861023] [T/O: true ][Cruise: false ] +[Elevator: 0.415199] [Roll: -0.203680] [Yaw: -0.040736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.165894] [T/O: true ][Cruise: false ] +[Elevator: 0.533574] [Roll: -0.240679] [Yaw: -0.048136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.378723] [T/O: true ][Cruise: false ] +[Elevator: 0.578029] [Roll: -0.278855] [Yaw: -0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.623535] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.768127] [T/O: true ][Cruise: false ] +[Elevator: 0.680549] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.975037] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.473645] [Yaw: -0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.059387] [T/O: true ][Cruise: false ] +[Elevator: 0.703775] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.047180] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.606169] [Yaw: -0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.072632] [T/O: true ][Cruise: false ] +[Elevator: 0.727155] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.159851] [T/O: true ][Cruise: false ] +[Elevator: 0.727155] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.284485] [T/O: true ][Cruise: false ] +[Elevator: 0.727155] [Roll: -0.572433] [Yaw: -0.114487] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.250793] [T/O: true ][Cruise: false ] +[Elevator: 0.727155] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.356445] [T/O: true ][Cruise: false ] +[Elevator: 0.727155] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.462891] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.539091] [Yaw: -0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.448364] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.529091] [Yaw: -0.077818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.583130] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.519091] [Yaw: -0.047818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.698242] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.509091] [Yaw: -0.017818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.340820] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.499091] [Yaw: 0.012182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.210571] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.489091] [Yaw: 0.042182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.329590] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.479091] [Yaw: 0.072182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.225220] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.469091] [Yaw: 0.102182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.149231] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.459091] [Yaw: 0.132182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.818604] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.449091] [Yaw: 0.162182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.164368] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.439091] [Yaw: 0.192182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.600952] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.429091] [Yaw: 0.222182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.951416] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.419091] [Yaw: 0.252182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.103333] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.409091] [Yaw: 0.282182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.065674] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.399091] [Yaw: 0.312182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.941406] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.389091] [Yaw: 0.342182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.621826] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.379091] [Yaw: 0.372182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.206787] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.369091] [Yaw: 0.402182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.530945] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.359091] [Yaw: 0.432182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.670227] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.349091] [Yaw: 0.462182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.672180] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.339091] [Yaw: 0.492182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.451843] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.329091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.925720] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.319091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.846497] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.309092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.596375] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.299092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.977539] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.289092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.032837] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.279092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.057068] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.269092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.694031] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.259092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.082764] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.249092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.794495] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.239092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.466064] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.229092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.939636] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.219092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.679810] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.209092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.985077] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.199092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.105713] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.189092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.204681] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.179092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.147095] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.169092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.651794] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.159092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.803040] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.149091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.975342] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.139091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.380676] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.129091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.501892] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.119091] [Yaw: 0.492182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.075806] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.109091] [Yaw: 0.462182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.825134] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.099091] [Yaw: 0.492182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.005707] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.089091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.498413] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.079091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.091034] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.069091] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.495605] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.059092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.013580] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.049092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.816467] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.039092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.116882] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.029092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.712769] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.019092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.626495] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: -0.009092] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.771973] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.000908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.169373] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.010908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.233185] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.020908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.619659] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.030908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.288345] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.040908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.000549] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.050908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.546478] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.060908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.010223] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.070908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.998840] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.080908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.353104] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.090908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.460083] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.100908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.810989] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.110908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.679077] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.120908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.579582] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.130908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.672134] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.140908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.998550] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.359818] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.666435] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.662460] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.526825] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.102516] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.386414] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.368134] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.000549] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.254173] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.081970] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.530052] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.635956] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.215996] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.463478] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.328583] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.051422] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.060921] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.123749] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.409714] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.488922] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.505447] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.710022] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.297699] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.933624] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.025940] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.110992] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.567093] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.017960] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.800552] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.406052] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.523697] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.980621] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.467102] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.397125] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.430847] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.423706] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.531342] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.224976] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.931152] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.737915] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.471893] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.616669] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.150908] [Yaw: 0.522182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.263580] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.809143] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.233246] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.176636] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.897339] [T/O: true ][Cruise: false ] +[Elevator: 0.235987] [Roll: 0.150671] [Yaw: 0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.728088] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.373230] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.617499] [Yaw: 0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.275055] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.617499] [Yaw: 0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.075531] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.617499] [Yaw: 0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.731934] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.378833] [Yaw: 0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.785370] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.658447] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.198059] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.361420] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.094238] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.364746] [T/O: true ][Cruise: false ] +[Elevator: 0.005249] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.671021] [T/O: true ][Cruise: false ] +[Elevator: 0.005249] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.620178] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.497955] [T/O: true ][Cruise: false ] +[Elevator: -0.020726] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.133942] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.996155] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.734283] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.869965] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.075531] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.802429] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.304688] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.515839] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.476746] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.121216] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.479767] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.545959] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.351959] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.862366] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.125427] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.153290] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.892395] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.447968] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.715576] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.678436] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.389771] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.749664] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.033875] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.177399] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.785004] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.444885] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.162323] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.628357] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.935211] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.207581] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.150604] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.785797] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: 0.250117] [Yaw: 0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.387177] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.911957] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.557251] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.897736] [T/O: true ][Cruise: false ] +[Elevator: 0.026635] [Roll: -0.056234] [Yaw: -0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.301849] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.354950] [T/O: true ][Cruise: false ] +[Elevator: 0.009941] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.686249] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.935516] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.112305] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.272369] [T/O: true ][Cruise: false ] +[Elevator: 0.004751] [Roll: -0.002485] [Yaw: 0.027503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.414673] [T/O: true ][Cruise: false ] +[Elevator: 0.014751] [Roll: 0.007515] [Yaw: 0.057503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.613892] [T/O: true ][Cruise: false ] +[Elevator: 0.024751] [Roll: 0.017515] [Yaw: 0.087503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.931091] [T/O: true ][Cruise: false ] +[Elevator: 0.034751] [Roll: 0.027515] [Yaw: 0.117503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.292206] [T/O: true ][Cruise: false ] +[Elevator: 0.044751] [Roll: 0.037515] [Yaw: 0.147503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.193665] [T/O: true ][Cruise: false ] +[Elevator: 0.054751] [Roll: 0.047515] [Yaw: 0.177503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.282654] [T/O: true ][Cruise: false ] +[Elevator: 0.064751] [Roll: 0.057515] [Yaw: 0.207503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.881653] [T/O: true ][Cruise: false ] +[Elevator: 0.074751] [Roll: 0.067515] [Yaw: 0.237503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.256561] [T/O: true ][Cruise: false ] +[Elevator: 0.084751] [Roll: 0.077515] [Yaw: 0.267503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.723816] [T/O: true ][Cruise: false ] +[Elevator: 0.094751] [Roll: 0.087515] [Yaw: 0.297503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.493286] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.097515] [Yaw: 0.327503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.371185] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.087515] [Yaw: 0.357503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.420319] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.077515] [Yaw: 0.387503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.319885] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.067515] [Yaw: 0.417503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.646271] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.057515] [Yaw: 0.447503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.308838] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.047515] [Yaw: 0.477503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.904419] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.037515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.322571] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.027515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.621216] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.017515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.107666] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.007515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.701935] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.002485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.397156] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.012485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.236176] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.022485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.029388] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.032485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.207764] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.042485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.009460] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.052485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.126022] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.062485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.422943] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.072485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.922607] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.082485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.748520] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.092485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.751266] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.102485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.964172] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.112485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.385803] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.122485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.000580] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.132485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.816818] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.142485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.833801] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.152485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.071396] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.152485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.527039] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.142485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.195435] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.132485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.046860] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.122485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.121216] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.112485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.439590] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.102485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.967819] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.092485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.843475] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.082485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.817627] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.072485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.009399] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.062485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.347931] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.052485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.772858] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.042485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.363617] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.032485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.050079] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.022485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.330383] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.012485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.805023] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: -0.002485] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.645386] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.007515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.741577] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.017515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.779388] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.027515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.109467] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.037515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.671783] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.047515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.572205] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.057515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.425781] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.067515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.693909] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.077515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.774963] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.087515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.148590] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.097515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.755188] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.107515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.506775] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.117515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.236176] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.127515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.213837] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.137515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.157318] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.147515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.597900] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.157515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.520844] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.147515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.508148] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.137515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.615936] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.127515] [Yaw: 0.507503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.787689] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.061768] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.510925] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.672546] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.037964] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.330688] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.007019] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.430298] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.194628] [Yaw: 0.038926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.015625] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.328080] [Yaw: 0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.879822] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.704956] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.555023] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.550161] [Yaw: 0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.318970] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.012482] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.571381] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.233429] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.606169] [Yaw: 0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.653595] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.890106] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.333801] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.675781] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.960022] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.561275] [Yaw: 0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.453979] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.617499] [Yaw: 0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.952759] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.628871] [Yaw: 0.125774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.429199] [T/O: true ][Cruise: false ] +[Elevator: 0.004751] [Roll: 0.618871] [Yaw: 0.155774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.840637] [T/O: true ][Cruise: false ] +[Elevator: 0.014751] [Roll: 0.608871] [Yaw: 0.185774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.035767] [T/O: true ][Cruise: false ] +[Elevator: 0.024751] [Roll: 0.598871] [Yaw: 0.215774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.316956] [T/O: true ][Cruise: false ] +[Elevator: 0.034751] [Roll: 0.588871] [Yaw: 0.245774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.964844] [T/O: true ][Cruise: false ] +[Elevator: 0.044751] [Roll: 0.578871] [Yaw: 0.275774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.908569] [T/O: true ][Cruise: false ] +[Elevator: 0.054751] [Roll: 0.568871] [Yaw: 0.305774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.658081] [T/O: true ][Cruise: false ] +[Elevator: 0.064751] [Roll: 0.558871] [Yaw: 0.335774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.278076] [T/O: true ][Cruise: false ] +[Elevator: 0.074751] [Roll: 0.548871] [Yaw: 0.365774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.933044] [T/O: true ][Cruise: false ] +[Elevator: 0.084751] [Roll: 0.538871] [Yaw: 0.395774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.975952] [T/O: true ][Cruise: false ] +[Elevator: 0.094751] [Roll: 0.528871] [Yaw: 0.425774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.499268] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.518871] [Yaw: 0.455774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.693726] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.508871] [Yaw: 0.485774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.136841] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.498871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.414368] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.488871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.995850] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.478871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.444275] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.468871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.044434] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.458871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.659119] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.448871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.991577] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.438871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.129822] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.428871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.982971] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.418871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.755737] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.408871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.289490] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.398871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.393494] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.388871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.691711] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.378871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.635742] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.368871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.272339] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.358871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.458191] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.348871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.446350] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.338871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.381042] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.328871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.178711] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.318871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.911377] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.308871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.517029] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.298871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.783508] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.915649] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.902527] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.390686] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.682678] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.722534] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.565063] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.038147] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.171814] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.041687] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.288871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.596313] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.278871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.834961] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.268871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.693604] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.258871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.113342] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.248871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.041382] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.238871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.499329] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.228871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.446350] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.218871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.905090] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.208871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.819946] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.198871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.277710] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.188871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.123535] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.178871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.389893] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.168871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.221680] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.158871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.431885] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.148871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.413696] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.138871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.271912] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.128871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.379944] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.118871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.001038] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.108871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.312805] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.098871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.038818] [T/O: true ][Cruise: false ] +[Elevator: 0.104751] [Roll: 0.088871] [Yaw: 0.515774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.402588] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.409963] [Yaw: 0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.711975] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.409963] [Yaw: 0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.160278] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.409963] [Yaw: 0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.129211] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.409963] [Yaw: 0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.200562] [T/O: true ][Cruise: false ] +[Elevator: 0.039249] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.954651] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: -0.194628] [Yaw: -0.038926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.901978] [T/O: true ][Cruise: false ] +[Elevator: 0.404741] [Roll: -0.308199] [Yaw: -0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.238953] [T/O: true ][Cruise: false ] +[Elevator: 0.566849] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.362671] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.993408] [T/O: true ][Cruise: false ] +[Elevator: 0.703775] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.074646] [T/O: true ][Cruise: false ] +[Elevator: 0.703775] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.705505] [T/O: true ][Cruise: false ] +[Elevator: 0.703775] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.291931] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.241455] [T/O: true ][Cruise: false ] +[Elevator: 0.680549] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.644470] [T/O: true ][Cruise: false ] +[Elevator: 0.611829] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.154053] [T/O: true ][Cruise: false ] +[Elevator: 0.457554] [Roll: -0.409963] [Yaw: -0.081993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.091248] [T/O: true ][Cruise: false ] +[Elevator: 0.404741] [Roll: -0.452215] [Yaw: -0.090443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.681183] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.450073] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.792223] [Yaw: -0.158445] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.974792] [T/O: true ][Cruise: false ] +[Elevator: -0.032820] [Roll: -0.987516] [Yaw: -0.197503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.692871] [T/O: true ][Cruise: false ] +[Elevator: -0.045896] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.530243] [T/O: true ][Cruise: false ] +[Elevator: -0.032820] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.689087] [T/O: true ][Cruise: false ] +[Elevator: 0.001330] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.252655] [T/O: true ][Cruise: false ] +[Elevator: 0.245388] [Roll: -0.950253] [Yaw: -0.190051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.394409] [T/O: true ][Cruise: false ] +[Elevator: 0.254863] [Roll: -0.950253] [Yaw: -0.190051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.253448] [T/O: true ][Cruise: false ] +[Elevator: 0.404741] [Roll: -0.864445] [Yaw: -0.172889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.343414] [T/O: true ][Cruise: false ] +[Elevator: 0.522572] [Roll: -0.780310] [Yaw: -0.156062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.827026] [T/O: true ][Cruise: false ] +[Elevator: 0.544620] [Roll: -0.780310] [Yaw: -0.156062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.986359] [T/O: true ][Cruise: false ] +[Elevator: 0.544620] [Roll: -0.780310] [Yaw: -0.156062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.947601] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: -0.606169] [Yaw: -0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.442505] [T/O: true ][Cruise: false ] +[Elevator: 0.750687] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.815247] [T/O: true ][Cruise: false ] +[Elevator: 0.646006] [Roll: -0.070628] [Yaw: -0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.379944] [T/O: true ][Cruise: false ] +[Elevator: 0.383987] [Roll: 0.348205] [Yaw: 0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.688446] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: 0.517089] [Yaw: 0.103418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.711700] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.708923] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: 0.528067] [Yaw: 0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.342743] [T/O: true ][Cruise: false ] +[Elevator: 0.425710] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.587036] [T/O: true ][Cruise: false ] +[Elevator: 0.894904] [Roll: 0.318108] [Yaw: 0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.321167] [T/O: true ][Cruise: false ] +[Elevator: 0.981285] [Roll: 0.308199] [Yaw: 0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.740479] [T/O: true ][Cruise: false ] +[Elevator: 0.981285] [Roll: 0.308199] [Yaw: 0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.379074] [T/O: true ][Cruise: false ] +[Elevator: 0.968848] [Roll: 0.308199] [Yaw: 0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.841934] [T/O: true ][Cruise: false ] +[Elevator: 0.944070] [Roll: 0.308199] [Yaw: 0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.156418] [T/O: true ][Cruise: false ] +[Elevator: 0.907146] [Roll: 0.308199] [Yaw: 0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.815567] [T/O: true ][Cruise: false ] +[Elevator: 0.715446] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.751419] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: 0.042546] [Yaw: 0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.643951] [T/O: true ][Cruise: false ] +[Elevator: 0.045896] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.261963] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: -0.744790] [Yaw: -0.148958] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.074295] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: -0.925571] [Yaw: -0.185114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.151672] [T/O: true ][Cruise: false ] +[Elevator: 0.020726] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.342331] [T/O: true ][Cruise: false ] +[Elevator: 0.020726] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.287079] [T/O: true ][Cruise: false ] +[Elevator: 0.030726] [Roll: -1.000000] [Yaw: -0.170000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.102554] [T/O: true ][Cruise: false ] +[Elevator: 0.040726] [Roll: -0.990000] [Yaw: -0.140000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.846451] [T/O: true ][Cruise: false ] +[Elevator: 0.050726] [Roll: -0.980000] [Yaw: -0.110000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.471893] [T/O: true ][Cruise: false ] +[Elevator: 0.060726] [Roll: -0.970000] [Yaw: -0.080000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.871216] [T/O: true ][Cruise: false ] +[Elevator: 0.070726] [Roll: -0.960000] [Yaw: -0.050000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.192032] [T/O: true ][Cruise: false ] +[Elevator: 0.080726] [Roll: -0.950000] [Yaw: -0.020000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.178589] [T/O: true ][Cruise: false ] +[Elevator: 0.090726] [Roll: -0.940000] [Yaw: 0.010000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.879990] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.930000] [Yaw: 0.040000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.842804] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.920000] [Yaw: 0.070000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.832321] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.910000] [Yaw: 0.100000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.327805] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.900000] [Yaw: 0.130000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.223465] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.890000] [Yaw: 0.160000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.604553] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.880000] [Yaw: 0.190000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.388077] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.870000] [Yaw: 0.220000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.843826] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.860000] [Yaw: 0.250000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.494614] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.850000] [Yaw: 0.280000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.667740] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.840000] [Yaw: 0.310000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.959015] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.830000] [Yaw: 0.340000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.439133] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.820000] [Yaw: 0.370000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.148224] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.810000] [Yaw: 0.400000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.162903] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.800000] [Yaw: 0.430000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.214066] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.790000] [Yaw: 0.460000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.464264] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.780000] [Yaw: 0.490000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.020569] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.770000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.799316] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.760000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.322357] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.750000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.412201] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.740000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.414185] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.730000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.160889] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.720000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.543274] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.710000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.587433] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.700000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.219360] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.690000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.175140] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.680000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.658386] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.670000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.554443] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.660000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.304199] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.650000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.757202] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.640000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.244354] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.630000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.055176] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.620000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.352020] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.610000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.600000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.313599] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.590000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.764923] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.580000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.485413] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.454437] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.660522] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.073120] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.712799] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.508362] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.741394] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.136536] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.201141] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.397766] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.208221] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.020447] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.507172] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.273529] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.916321] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.399292] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.219543] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.079254] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.888245] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.569809] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.946899] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.647369] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.011856] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.801544] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.510193] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.570000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.560000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.550000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.540000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.530000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.520000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.510000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.500000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.490000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.480000] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.470001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.460001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.450001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.440001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.430001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.420001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.410001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.400001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.390001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.380001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.370001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.360001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.350001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.340001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.330001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.320001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.310001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.300001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.290001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.280001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.270001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.260001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.250001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.240001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.230001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.220001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.210001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.200001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.190001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.180001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.170001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.160001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.140001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.130001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.120001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.110001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.120001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.130001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.140001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.100726] [Roll: -0.150001] [Yaw: 0.520000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.424438] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.147787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147797] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147779] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147749] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147700] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147600] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147779] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148196] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148183] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147767] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147710] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148177] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149628] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149491] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148368] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147870] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147266] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146522] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143288] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140723] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129285] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120720] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109677] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107891] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105301] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105064] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106042] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107332] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109007] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111122] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113428] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115602] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121969] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124208] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126538] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140841] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143628] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144487] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145082] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145722] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146104] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146423] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147160] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147480] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148520] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151554] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152561] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153810] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154808] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158125] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160195] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163381] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163683] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163882] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165294] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166681] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167343] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169482] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169993] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170490] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171078] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171807] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172569] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173460] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175130] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176403] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176325] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176172] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176373] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178113] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178577] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180370] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181484] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182428] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185468] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186595] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187965] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187744] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186410] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184436] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182677] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180717] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177107] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177444] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179403] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181798] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184673] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187203] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192355] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193712] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195278] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197308] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199134] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200665] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202255] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203721] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204588] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205283] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.233883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.258744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.267905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.278628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.290043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.302728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.317341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.334604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.352530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.372784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.399828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.428117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.459032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.496989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.538733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.588769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.646830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.711570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.786904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.879982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.978101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.093479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.222175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.365324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.524177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.700748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.905558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.128887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.371769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.635956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.926399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.265200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.626305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.965372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.430185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.879887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.362026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.912706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.524239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.217407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.869516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.606329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.504864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.333210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.305279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.237219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.208845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.221577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.326309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.484091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.708731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.989536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.338345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.705109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.141926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.636395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.221600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.929836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.603710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.342815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.295174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.261463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.287945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.374157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.475544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.631275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.821293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.181240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.421120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.819061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.155647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.621864] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.050728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.692932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.291893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.864021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.554237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.376968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.064018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.794434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.602608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.394966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.319839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.183907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.172928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.149673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.119247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.129745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.170418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.219208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.282532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.488586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.616180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.763062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.135971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.485474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.736816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.072113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.411057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.653564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.929428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.234650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.536728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.934555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.229111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.597824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.892838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.212585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.588364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.895844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.227936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.641846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.020828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.432144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.723663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.141281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.521881] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.859238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.182922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.499619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.723633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.940323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.194000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.384720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.554657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.749954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.863113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.974625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.103058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.619781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.660767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.732025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.781891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.705841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.678558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.546631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.401611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.175781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.932709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.818420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.467651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.145508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.900146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.861328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.348785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.870789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.424896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.765869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.153900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.566803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.840851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.005463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.107330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.200531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.213013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.193359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.185883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.078796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.892273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.738220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.487976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.210846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.851410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.439423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.976563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.519165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.987152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.442169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.858521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.177216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.476715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.770386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.009949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.132813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.230652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.273132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.308502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.305084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.232025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.127838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.978668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.813995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.612762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.376740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.138092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.815948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.517151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.120544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.704010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.244812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.774567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.268982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.729950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.195160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.609558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.042114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.407928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.739624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.058777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.360596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.649506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.912231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.170319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.422760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.640381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.854309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.059174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.235870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.397919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.547974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.692352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.840637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.973785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.090973] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.205658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.315369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.422485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.531006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.632202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.736237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.842194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.946716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.051971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.162445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.276489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.397430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.524628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.660950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.811188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.974976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.143982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.347168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.559784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.790131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.039734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.304535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.589630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.893677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.234467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.585876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.973114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.427643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.919342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.455444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.972961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.531464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.125122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.759369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.431915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.187714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.970306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.777557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.645477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.592743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.549805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.534943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.725677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.838043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.066345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.236359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.479401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.843750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.188995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.654999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.070679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.524384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.069641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.732971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.414063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.084534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.840149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.648956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.459106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.527893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.540375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.558777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.539978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.654327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.872986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.096680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.352539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.637238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.088104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.453094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.856934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.287079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.763153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.266418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.052429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.787933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.832550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.532806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.125031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.793762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.415680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.142853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.974060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.039185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.056610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.841125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.994965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.903992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.660095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.595856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.381714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.338440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.217804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.190979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.264771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.408173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.387543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.498840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.454468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.541931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.462891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.377380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.278320] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.114258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.955078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.023743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.940735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.837341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.738831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.634094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.493958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.436584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.299866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.097900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.855530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.605164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.382385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.191956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.981812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.828979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.545654] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.226685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.279358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.009277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.921082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.839905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.709351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.368408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.199585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.427490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.207153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.859558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.379944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.868103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.321472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.729797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.260254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.571716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.969421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.287231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.643433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.087585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.493347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.743103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.898254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.151245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.417114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.738831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.809814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.938232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.876038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.928467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.807251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.599304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.473877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.161926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.964783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.621887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.319702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.026733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.601318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.139099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.664795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.146545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.621582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.998901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.435181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.769348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.998474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.146667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.272461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.345642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.503906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.516907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.509766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.431763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.297363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.128540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.946655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.736816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.504028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.211914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.902100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.566040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.195862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.846924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.433655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.017334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.578369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.113831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.653259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.182068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.654541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.112244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.855408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.282043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.687195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.061584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.446167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.807129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.149475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.534058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.913940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.266296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.609680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.999573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.360901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.719910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.086731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.432068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.784058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.152344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.513733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.879456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.282166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.674805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.117554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.561523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.012451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.430481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.886719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.312378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.805664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.266479] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.822876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.333313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.853760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.410034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.912292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.451111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.020508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.629456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.236511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.866394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.470825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.172791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.846741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.529480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.244751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.958130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.655701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.449341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.225342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.989136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.839233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.663086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.572083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.451172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.361511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.330750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.201721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.210632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.254211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.178162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.252930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.247620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.265869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.380310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.427856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.623047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.801208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.004700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.183289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.494568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.719421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.033508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.287048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.733521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.230835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.737122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.092896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.570313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.962585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.557617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.093323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.679382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.356262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.893127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.629456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.326050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.166565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.785767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.571716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.287415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.223206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.958252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.878967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.703796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.660645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.719238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.624023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.614136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.662231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.871216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.125000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.448975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.680664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.728760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.001831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.345520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.426636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.671021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.786743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.130798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.570496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.939758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.333618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.718506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.115723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.464294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.675476] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148333] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148325] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148323] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148310] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148282] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148239] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148185] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148129] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148107] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148136] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148211] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148324] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148490] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148723] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148353] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148118] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148042] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148058] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148233] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148461] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148685] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149639] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150118] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150183] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150104] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149906] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149640] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149311] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148601] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148411] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148204] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147900] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147167] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146014] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144156] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141545] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138227] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134459] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130157] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125905] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121860] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118171] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115520] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112833] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110673] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109515] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.031504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108181] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.061504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107102] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.091504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106121] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.121504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105775] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.151504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105979] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.181504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106851] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.211504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108440] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.241504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110506] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.271504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112849] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.301504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115124] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.331504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117229] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.361504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119343] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.391504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121396] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.421504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123708] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.451504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126171] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.481504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128818] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131350] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134187] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137115] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139742] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141792] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143299] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144580] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145674] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146419] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147008] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147535] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148088] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148449] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148403] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148286] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148434] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149329] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149833] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150600] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151833] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153352] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154566] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155558] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156298] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156883] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157349] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157961] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158748] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159540] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160045] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160291] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160392] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160598] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160961] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161287] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161332] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161186] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161198] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161695] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162684] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164223] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165907] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167665] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168802] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169785] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170330] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170973] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171570] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171986] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172215] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172440] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172117] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171671] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171414] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171576] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171831] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171936] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172135] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172204] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172123] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172346] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172465] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172547] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172698] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172861] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172928] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172970] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173036] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173395] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173748] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174578] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175376] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176456] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177879] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179431] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181697] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184403] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187209] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189484] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191490] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193343] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195362] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197127] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198486] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199307] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199743] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199752] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199516] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198655] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196990] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194884] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192887] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191895] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191638] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192326] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193451] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194942] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196913] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199172] [T/O: true ][Cruise: false ] +[Elevator: 0.003162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201630] [T/O: true ][Cruise: false ] +[Elevator: 0.013162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203848] [T/O: true ][Cruise: false ] +[Elevator: 0.023162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206129] [T/O: true ][Cruise: false ] +[Elevator: 0.033162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208355] [T/O: true ][Cruise: false ] +[Elevator: 0.043162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210017] [T/O: true ][Cruise: false ] +[Elevator: 0.053162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211185] [T/O: true ][Cruise: false ] +[Elevator: 0.063162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211670] [T/O: true ][Cruise: false ] +[Elevator: 0.073162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211622] [T/O: true ][Cruise: false ] +[Elevator: 0.083162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211272] [T/O: true ][Cruise: false ] +[Elevator: 0.093162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210762] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209704] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209097] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208609] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208249] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208308] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208367] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208433] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208074] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207170] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206147] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205089] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204029] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203498] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203521] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204299] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205659] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207602] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209636] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211824] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214552] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217570] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220982] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224638] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228758] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232636] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.236637] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240815] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.245522] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.250742] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256569] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262496] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.268927] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.275107] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.281922] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288516] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.294724] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.300982] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.307187] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.313802] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.321310] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.329635] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.339389] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.351618] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.365956] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.383899] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.405875] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.433468] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.466913] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.513574] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.565295] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.630868] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.708493] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.797177] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.910904] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.032697] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.176395] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.334146] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.522245] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.730768] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.943800] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.180735] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.437334] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.719631] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.016434] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.339502] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.839788] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.305264] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.795652] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.319752] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.892693] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.501471] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.095537] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.800144] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.573332] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.399052] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.257555] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.162289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.125751] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.142326] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.195023] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.310081] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.478502] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.674477] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.975185] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.338940] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.807770] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.406319] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.017975] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.733757] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.496086] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.420620] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.365887] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.387436] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.433125] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.546181] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.788986] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.022919] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.340427] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.753212] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.135666] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.606682] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.231262] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.856369] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.551147] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.242432] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.054306] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.902260] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.761421] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.654701] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.556824] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.230705] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.221786] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.228729] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.286682] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.251068] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.351761] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.431213] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.460968] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.507477] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.759758] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.059303] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.371796] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.761414] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.881866] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.158066] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.272827] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.663666] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.159485] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.412689] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.658936] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.075912] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.790390] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.732162] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.715439] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.714508] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.719589] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.702682] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.743149] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.166916] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.172302] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.621002] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.110245] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.673157] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.260605] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.466888] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.840149] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.326035] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.592117] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.367691] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.997635] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.600464] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.058212] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.586121] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.029144] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.336243] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.653885] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.869583] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.854889] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.959045] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.912903] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.066833] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.931366] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.100220] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.168304] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.932587] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.886963] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.489563] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.381561] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.296753] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.363617] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.116089] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.865662] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.638916] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.342010] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.739166] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.376190] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.991882] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.551453] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.077362] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.702728] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.048279] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.273285] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.571594] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.760071] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.913330] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.165314] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.220795] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.170685] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.081787] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.894012] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.572937] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.158783] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.758759] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.262909] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.728302] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.104248] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.545868] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.831482] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.145508] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.283722] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.364563] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.480957] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.457428] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.500214] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.400665] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.307129] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.199005] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.967255] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.753723] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.462891] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.147064] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.815887] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.431488] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.007080] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.547089] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.077728] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.540405] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.021118] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.436798] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.812225] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.161316] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.500214] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.806122] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.086365] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.345123] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.581787] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.789063] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.991577] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.173309] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.333740] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.481659] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.625671] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.742157] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.849548] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.957275] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.047302] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.136780] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.213135] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.291534] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.360107] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.432892] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.497925] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.586243] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.653473] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.721191] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.794312] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.877289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.959290] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.050842] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.143158] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.250671] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.360168] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.484924] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.617462] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.756165] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.913116] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.094910] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.282806] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.493713] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.705780] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.940033] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.191620] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.453003] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.766357] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.084167] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.444489] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.840057] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.220520] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.674530] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.146698] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.600952] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.103241] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.651093] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.199524] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.806976] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.458862] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.160522] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.838257] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.605988] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.410187] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.264435] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.150208] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.089081] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.078827] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.043640] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.113831] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.294525] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.471558] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.699310] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.880676] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.169037] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.516663] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.962677] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.375885] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.830902] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.406921] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.026978] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.704620] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.475067] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.182007] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.119751] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.997101] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.034363] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.235748] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.423645] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.535767] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.659912] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.971985] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.196289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.775787] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.408997] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.790161] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.348846] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.753113] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.294708] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.190582] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.113861] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.758789] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.595703] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.717957] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.403290] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.214020] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.854492] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.940155] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.645020] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.794647] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.714996] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.679199] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.654724] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.979279] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.197479] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.573975] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.343872] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.371307] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.548828] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.434845] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.334351] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.493713] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.409424] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.526917] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.418274] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.279297] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.389893] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.524109] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.396851] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.499207] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.619385] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.400391] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.426819] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.175598] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.334412] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.379395] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.415100] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.372803] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.145142] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.861877] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.711853] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.679749] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.282654] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.882629] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.678345] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.324707] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.362915] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.149658] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.872498] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.874023] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.931091] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.754150] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.230103] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.719543] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.345825] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.914063] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.380615] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.237976] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.966980] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.666260] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.289978] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.981018] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.580627] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.106995] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.321411] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.812317] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.005493] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.286743] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.602722] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.807251] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.184998] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.347290] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.513000] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.729370] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.807251] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.842285] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.870056] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.970764] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.846008] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.817688] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.787170] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.533325] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.458740] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.169189] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.958862] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.666870] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.321289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.990906] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.508301] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.001221] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.548706] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.943665] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.331177] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.678162] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.030090] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.358643] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.621582] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.946655] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.142761] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.219788] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.438538] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.458862] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.537720] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.595764] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.648315] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.536072] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.504700] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.462158] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.242981] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.303955] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.243286] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.872131] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.576233] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.271240] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.898926] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.564270] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.147095] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.816833] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.408997] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.992920] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.487244] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.012939] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.461792] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.949707] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.366760] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.845276] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.310364] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.684692] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.098083] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.526917] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.888306] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.260193] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.625854] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.030457] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.420349] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.779968] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.177429] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.607910] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.956421] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.384583] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.783142] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.186829] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.619324] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.006042] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.477844] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.993164] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.532104] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.017761] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.547607] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.032898] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.596619] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.121216] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.685730] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.293335] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.983398] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.571289] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.221802] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.872253] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.567322] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.242554] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.999695] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.745911] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.524963] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.307861] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.118652] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.955566] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.843445] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.759705] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.608521] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.511963] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.465881] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.423096] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.455566] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.520813] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.539612] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.622375] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.786987] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.981384] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.137756] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.274353] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.454285] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.612122] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.826904] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.020264] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.366028] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.668518] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.282898] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.763184] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.246216] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.695801] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.231689] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.750977] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.458557] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.085144] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.690430] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.438171] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.053650] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.977783] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.844666] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.535217] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.411011] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.079773] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.096558] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.192444] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.265930] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.164856] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.119080] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.124878] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.174438] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.196594] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.336731] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.466431] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.656494] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.755859] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.023804] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.434143] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.860657] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.117065] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.551270] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.773682] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.234802] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.611267] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.072937] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.511353] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.898621] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.453003] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.088135] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.464355] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.118469] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.653076] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.060120] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.788513] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.391479] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.007019] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.511719] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.179077] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.738220] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.493469] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.979309] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.631775] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.145386] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.662231] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.341675] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.825867] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.474060] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.028076] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.525269] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.098267] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.712646] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.383789] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.887146] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.690369] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.129211] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.653076] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.169067] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.764832] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.114136] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.686279] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.072632] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.524963] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.764465] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.380981] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.155151] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.677612] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.128723] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.546265] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.825256] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.209167] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.427917] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.807617] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.918640] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.284546] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.489136] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.676941] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.120728] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.430969] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.410217] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.524414] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.554504] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.561951] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.605652] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.465454] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.424988] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.506104] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.563538] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.381348] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.374268] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.405701] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.375183] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.319824] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.212463] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.045837] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.878174] [T/O: true ][Cruise: false ] +[Elevator: 0.103162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.545044] [T/O: true ][Cruise: false ] +[Elevator: 0.093162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.375732] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.153015] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.870178] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.743042] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.343079] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.952393] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.704651] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.362488] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.159241] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.631897] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.107361] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.621338] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.119751] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.411804] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.790771] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.065796] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.386963] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.638184] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.820068] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.914795] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.017700] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.978882] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.037354] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.932739] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.786987] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.564209] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.246826] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.860840] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.431030] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.912354] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.294312] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.582031] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.793457] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.913574] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.825317] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.630737] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.333496] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.914673] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.393066] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.808105] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.053589] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.205444] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.092651] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.024658] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.809082] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.464844] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.987671] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.531006] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.738647] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.051514] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.140442] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.159363] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.098694] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.897461] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.775208] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.330872] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.849365] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.484741] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.833984] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.029480] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.170593] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.492004] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.565247] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.510925] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.257324] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.332214] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.917114] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.724182] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.368835] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.862488] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.358887] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.748047] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.176941] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.624390] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.951843] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.235596] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.533142] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.758972] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.108093] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.289124] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.367371] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.942932] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.067322] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.216858] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.585938] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.996460] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.321350] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.991638] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.392700] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.254272] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.083496] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.903625] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.960754] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.104370] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.190857] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.704468] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.418396] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.072876] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.158630] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.314758] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.611450] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.255432] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.990662] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.007263] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.268250] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.755188] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.474243] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.437805] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.663269] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.078003] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.828003] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.720520] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.929260] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.400391] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.108704] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.275391] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.377686] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.084167] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.010559] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.094910] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.399658] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.094482] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.620056] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.154480] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.206787] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.825806] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.146118] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.158875] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.786316] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.424683] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.125549] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.573181] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.402954] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.016785] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.397705] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.776184] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.038269] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.968994] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.058411] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.326721] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.620605] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.664551] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.506470] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.515137] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.927124] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.517944] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.348389] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.119263] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.500122] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.791382] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.128784] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.356567] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.675415] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.320679] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.313965] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.050415] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.312744] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.471436] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.664673] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.037842] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.264526] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.507446] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.460327] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.631348] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.592407] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.262939] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.735596] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.957153] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.493042] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.849976] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.482910] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.037354] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.853394] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.556030] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.286255] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.589722] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.931152] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.129395] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.307617] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.410889] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.160522] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.957764] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.995239] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.781250] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.599243] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.195557] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.554565] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.980957] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.319702] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.433838] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.443970] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.896484] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.855469] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.218140] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.343018] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.187500] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.850342] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.204956] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.398438] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.413696] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.200806] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.796509] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.550171] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.666504] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.595215] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.581665] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.154297] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.558105] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.757324] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.780640] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.619507] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.284546] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.772217] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.046753] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.117188] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.011108] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.708496] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.257324] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.660889] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.763916] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.734009] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.529053] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.215698] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.754517] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.134277] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.209229] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.205566] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.995605] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.693359] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.181763] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.444092] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.659668] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.583862] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.581177] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.225464] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.842285] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.055786] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.835327] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.610229] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.491821] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.952515] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.202637] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.521973] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.176270] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.130493] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.899414] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.280151] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.627441] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.352417] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.082397] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.535156] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.095947] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.596191] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.044067] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.280884] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.432739] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.389282] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.180054] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.633911] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.819092] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.663452] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.695923] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.710327] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.771118] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.837891] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.261108] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.610107] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.088379] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.462524] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.803711] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.837524] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.547974] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.076294] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.532959] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.950073] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.722656] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.911987] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.135986] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.499512] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.042969] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.577637] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.100342] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.670898] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.154724] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.416443] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.685120] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.289551] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.581177] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.970093] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.303772] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.805054] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.327087] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.668030] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.393066] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.752747] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.790283] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.235596] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.224304] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.476318] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.320068] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.899292] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.344543] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.858093] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.884766] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.533020] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.951965] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.007507] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.136902] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.778809] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.035950] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.549561] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.599182] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.546753] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.368469] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.634888] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.458496] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.809998] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.597229] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.027588] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.053955] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.631714] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.526550] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.080505] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.759827] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.304260] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.037964] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.712524] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.697510] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.827698] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.313416] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.445496] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.876282] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.676697] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.206970] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.161377] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.117554] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.034058] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.846008] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.014771] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.895142] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.472961] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.390076] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.977234] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.682983] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.157654] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.103943] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.121765] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.972168] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.307983] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.947632] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.118164] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.190796] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.711548] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.156616] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.719360] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.970215] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.993774] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.461792] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.979126] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.574341] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.797241] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.108765] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.525269] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.542969] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.131714] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.775024] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.699585] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.565918] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.546265] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.487427] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.845581] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.572510] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.444580] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.238525] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.057861] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.901489] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.274170] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.892822] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.291016] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.213379] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.411133] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.132080] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.012939] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.932373] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.504639] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.855591] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.077515] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.463867] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.286743] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.488770] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.459961] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.409302] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.654419] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.039429] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.149414] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.892090] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.711792] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.974487] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.619507] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.908813] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.479248] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.241821] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1493.700439] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.841064] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.873657] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1506.238647] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1510.265625] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.111938] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1517.693359] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.265503] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1525.049561] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.549438] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.066895] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.112183] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.940430] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.780762] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1543.471558] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.002686] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.468872] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.628174] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.860474] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.764526] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.602173] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.109253] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.454102] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.565674] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.509888] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.194092] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.714844] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.044678] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.203125] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.166626] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.918457] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.458618] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.773438] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.955322] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.877686] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.502197] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.933105] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1555.122437] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.025024] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.757446] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.419800] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1545.483643] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.631470] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.655884] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1536.541138] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.229126] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1529.882446] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.315674] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.535522] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.135254] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.623047] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1508.651367] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1503.347534] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.869751] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.510986] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.147217] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.296753] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.183350] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.123657] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.265137] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.600708] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411499] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.404419] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.378052] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.166260] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.536987] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.970459] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.213745] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.388184] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.912598] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.522583] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.027588] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.799438] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.319458] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.116699] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.155029] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.492798] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.588013] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.516235] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.407959] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.796997] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.343262] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.572144] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.917480] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.541504] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.534058] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.886719] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.034546] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.971924] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.244507] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.793945] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.116699] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.165283] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.217285] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.013306] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.327148] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.703979] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.103760] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.188416] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.234070] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.994507] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.323608] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.454834] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.890808] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.860107] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.655701] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.054688] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.297485] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.853821] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.250366] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.923035] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.448914] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.121033] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.646118] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.218811] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.935303] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.507629] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.434570] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.219788] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.452087] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.651367] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.698853] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.796936] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.196289] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.891602] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.811768] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.017273] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.304260] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.674011] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.959564] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.250031] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.038666] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.110962] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.757324] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.251495] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.915588] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.686768] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.596985] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.657745] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.920380] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.258484] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.280334] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.866150] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.221436] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.428253] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.712860] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.757416] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.795471] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.788269] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.633484] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.234894] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.455780] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.776306] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.225342] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.720215] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.321320] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.869141] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.559998] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.972351] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.101379] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.336823] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.332031] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.662140] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.717987] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.263733] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.426788] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.667480] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.508423] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.926758] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.032532] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.911194] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.359253] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.030823] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.994934] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.819458] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.351257] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.628418] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.753845] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.004517] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.924744] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.052551] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.120117] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.738098] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.879517] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.543884] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.678650] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.581055] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.855469] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.429260] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.804504] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.879150] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.915222] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.738159] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.110107] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.812988] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.443176] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.394165] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.632629] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.822571] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.646545] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.239380] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.620300] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.886169] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.206299] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.641724] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.308228] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.578613] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.510010] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.910034] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.831299] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.519043] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.028198] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.239990] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.056641] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.794678] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.687012] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.291382] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.020508] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.052246] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.186523] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.061279] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.358032] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.296387] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.843018] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.328003] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.215942] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.017334] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.469360] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.118774] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.083862] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.371704] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.914307] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.701538] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.316162] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.681885] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.025391] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.947510] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.776489] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.967163] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.408936] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.417358] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.964600] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.229614] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.131226] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.025269] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.381470] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.579346] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.504028] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.050049] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.480347] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.432007] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.107544] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.519897] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.617188] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.380493] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.847900] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.014648] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.931885] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.497925] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.702026] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.715698] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.417725] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.713257] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.798462] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.482666] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.071655] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.176392] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.009521] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.229736] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.038574] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.515137] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.193481] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.892334] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.909912] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.679810] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.234741] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.353027] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.341675] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.566406] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.844971] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.143799] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.655640] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.532104] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.577271] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.831421] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.479126] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.979980] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.864258] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.718262] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.758179] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.308594] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.146729] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.264160] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.009766] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.647705] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.188599] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.469238] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.098999] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.281128] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.100891] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.063782] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.243591] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.067444] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.067505] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.391418] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.712158] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.927979] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.834717] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.133606] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.708923] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.311584] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.554016] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.583191] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.068176] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.659302] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.853210] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.383118] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.718079] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.372192] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.516663] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.051270] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.942322] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.838623] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.167786] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.591248] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.860535] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.819641] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.605652] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.444580] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.990662] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.823303] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.143250] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.444733] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.895233] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.478973] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.195984] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.353027] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.406403] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.746124] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.485291] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.671997] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.974731] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.348999] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.183929] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.644012] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.363129] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.582611] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.016327] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.842377] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.556488] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.508072] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.134659] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.295639] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.059143] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.480530] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.168808] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.532547] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.831757] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.033829] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.338943] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.448395] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.388962] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.165436] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.877945] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.500320] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.986816] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.246628] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.171066] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.579773] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.613434] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.984085] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.807693] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.757370] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.823898] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.732025] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.732758] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.464600] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.950500] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.608795] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.911621] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.093811] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.977448] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.845734] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.833344] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.228302] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.915833] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.608826] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.050354] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.227905] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.563721] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.387970] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.990570] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.935516] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.800354] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.444458] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.450623] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.544861] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.286194] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.808716] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.470520] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.080383] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.718323] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.995972] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.975464] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.686829] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.770325] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.705627] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.551514] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.510254] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.348267] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.773193] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.921631] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.643066] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.197571] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.506836] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.414124] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.571960] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.914795] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.249146] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.911377] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.212769] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.380737] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.683228] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.722168] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.686096] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.069214] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.907959] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.540405] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.250610] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.341309] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.785156] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.005737] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.478699] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.186157] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.429565] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.274048] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.221313] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.855103] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.253784] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.933350] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.502319] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.742676] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.873413] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.665283] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.328491] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.363403] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.633911] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.858032] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.253662] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.106689] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.602295] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.083008] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.226929] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.994019] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.111328] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.031128] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.661499] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.946289] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.891724] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.496582] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.910889] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.888794] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.426270] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.521606] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.263062] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.553955] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.408936] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.041748] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.139038] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.029297] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.364014] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.289063] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.072998] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.078735] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.235840] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.378906] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.749878] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.107422] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.459961] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.403687] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.673218] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.270264] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.825928] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.056152] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.125000] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.301514] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.255981] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.997559] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.580688] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.151001] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.085999] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.614990] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.846802] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.882080] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.734985] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.397522] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.827209] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.018921] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.893799] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.637146] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.985596] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.208374] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.047913] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.592712] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.727539] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.451355] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.877380] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.219727] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.450928] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.392090] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.047119] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.451416] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.311584] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.616699] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.010376] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.228821] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.976624] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.678772] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.079529] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.830627] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.686523] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.845032] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.614685] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.529114] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.781006] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.584351] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.210815] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.314880] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.976044] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.104034] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.764160] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.135437] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.097687] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.769653] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.188660] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.609467] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.726715] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.362244] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.582550] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.813751] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.714447] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.736603] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.108612] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.770660] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.860184] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.730972] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.174606] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.431107] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.914597] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.677155] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.738190] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.028336] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.184296] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.378998] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.313248] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.339264] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.146729] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.986984] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.140747] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.976585] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.760376] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.529953] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.234375] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.838364] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.365219] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.644890] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.773071] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.805389] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.188660] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.917389] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.776489] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.787735] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.270370] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.770386] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.662842] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.726227] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.755157] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.919891] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.743362] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.338181] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.123322] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.705139] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.731689] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.035492] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.582520] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.543701] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.677399] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.673615] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.222260] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.552948] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.157013] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.057617] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.154175] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.488708] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.639282] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.927307] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.802063] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.925690] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.840454] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.195068] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.632202] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.708374] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.024597] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.642944] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.376831] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.533081] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.903442] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.929932] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.342529] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.770020] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.274780] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.362488] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.715637] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.114075] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.503723] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.091614] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.367188] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.061523] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.690552] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.712585] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.764893] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.672913] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.209656] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.044922] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.443665] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.824951] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.018250] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.032776] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.913574] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.072693] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.845947] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.413696] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.590759] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.670410] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.616150] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.143494] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.671265] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.725769] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.101563] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.891052] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.158325] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.471069] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.921692] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.912842] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.004761] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.568481] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.863525] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.695068] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.143250] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.764038] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.091553] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.942749] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.504272] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.756836] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.816162] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.429932] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.148682] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.200439] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.209961] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.936646] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.956299] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.676514] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.063599] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.112305] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.892578] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.347290] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.504028] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.339966] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.820435] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.032104] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.740967] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.302490] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.399292] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.195190] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.735962] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.989502] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.140869] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.856689] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.431641] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.749512] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.300537] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.586182] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.842529] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.205933] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.604431] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.320435] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.214966] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.032532] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.636230] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.840393] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.211914] [T/O: false ][Cruise: true ] +[Elevator: -0.206838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.725769] [T/O: false ][Cruise: true ] +[Elevator: -0.196838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.769531] [T/O: false ][Cruise: true ] +[Elevator: -0.186838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.223328] [T/O: false ][Cruise: true ] +[Elevator: -0.176838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.026184] [T/O: false ][Cruise: true ] +[Elevator: -0.166838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.696045] [T/O: false ][Cruise: true ] +[Elevator: -0.156838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.572815] [T/O: false ][Cruise: true ] +[Elevator: -0.146838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.599487] [T/O: false ][Cruise: true ] +[Elevator: -0.136838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.559631] [T/O: false ][Cruise: true ] +[Elevator: -0.126838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.814087] [T/O: false ][Cruise: true ] +[Elevator: -0.116838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.269836] [T/O: false ][Cruise: true ] +[Elevator: -0.106838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.470154] [T/O: false ][Cruise: true ] +[Elevator: -0.096838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.551086] [T/O: false ][Cruise: true ] +[Elevator: -0.086838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.890808] [T/O: false ][Cruise: true ] +[Elevator: -0.076838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.968567] [T/O: false ][Cruise: true ] +[Elevator: -0.066838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.113220] [T/O: false ][Cruise: true ] +[Elevator: -0.056838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.777954] [T/O: false ][Cruise: true ] +[Elevator: -0.046838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.663452] [T/O: false ][Cruise: true ] +[Elevator: -0.036838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.947327] [T/O: false ][Cruise: true ] +[Elevator: -0.026838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.289673] [T/O: false ][Cruise: true ] +[Elevator: -0.016838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.276855] [T/O: false ][Cruise: true ] +[Elevator: -0.006838] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.290039] [T/O: false ][Cruise: true ] +[Elevator: 0.003162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.648560] [T/O: false ][Cruise: true ] +[Elevator: 0.013162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.409058] [T/O: false ][Cruise: true ] +[Elevator: 0.023162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.725647] [T/O: false ][Cruise: true ] +[Elevator: 0.033162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.972046] [T/O: false ][Cruise: true ] +[Elevator: 0.043162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.806519] [T/O: false ][Cruise: true ] +[Elevator: 0.053162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.628967] [T/O: false ][Cruise: true ] +[Elevator: 0.063162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.530396] [T/O: false ][Cruise: true ] +[Elevator: 0.073162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.862000] [T/O: false ][Cruise: true ] +[Elevator: 0.083162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.502563] [T/O: false ][Cruise: true ] +[Elevator: 0.093162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.143738] [T/O: false ][Cruise: true ] +[Elevator: 0.103162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.451843] [T/O: false ][Cruise: true ] +[Elevator: 0.113162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.935547] [T/O: false ][Cruise: true ] +[Elevator: 0.123162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.983154] [T/O: false ][Cruise: true ] +[Elevator: 0.133162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.630188] [T/O: false ][Cruise: true ] +[Elevator: 0.143162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.291504] [T/O: false ][Cruise: true ] +[Elevator: 0.153162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.291199] [T/O: false ][Cruise: true ] +[Elevator: 0.163162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.361786] [T/O: false ][Cruise: true ] +[Elevator: 0.173162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.056244] [T/O: false ][Cruise: true ] +[Elevator: 0.183162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.829651] [T/O: false ][Cruise: true ] +[Elevator: 0.193162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.145721] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.698608] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.057312] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.883942] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.024597] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.407318] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.037231] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.153381] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.269348] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.170776] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.019974] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.862030] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.862900] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.876816] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.211914] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.818985] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.658112] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.959213] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.157521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.147521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.137521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.127521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.117521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.107521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.097521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.087521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.077521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.067521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.057521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.047521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.037521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.027521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.017521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: 0.007521] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.002479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.012479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.022479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.032479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.042479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.052479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.062479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.072479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.082479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.092479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.102479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.112479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.122479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.132479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.142479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.203162] [Roll: -0.152479] [Yaw: 0.511504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.568512] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149162] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149150] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149121] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149134] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149299] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149510] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149259] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150877] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150826] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150596] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149888] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149151] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148659] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148200] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145854] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143538] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137080] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133040] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128860] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120884] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115353] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111043] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109877] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106967] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106694] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107000] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107942] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109453] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113763] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116169] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118485] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121165] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123386] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125873] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128248] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130955] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133630] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136475] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139285] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141939] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143661] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146126] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146944] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147624] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148019] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148468] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149640] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150129] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152035] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154360] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158541] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163743] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164419] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165261] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166144] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167323] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168262] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168164] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168620] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169359] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170908] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172133] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174545] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177043] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178084] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178020] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178007] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178278] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178368] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178965] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179774] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180199] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180819] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181693] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183701] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184869] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189809] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189446] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185863] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183722] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179314] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178307] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178765] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183153] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190457] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192306] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193840] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194932] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196397] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198685] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200690] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202291] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203759] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205380] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206409] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.247268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.272064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.285076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.298855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.314560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.333335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.352734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.378961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.413278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.451230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.489519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.536248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.586400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.652459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.726148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.818865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.926731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.049017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.181557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.333573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.496862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.706060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.926124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.127663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.377401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.670113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.981911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.276321] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.676189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.113295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.559669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.041779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.569429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.135012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.701696] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.296124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.978893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.653196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.396803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.171373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.992165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.028782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.020756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.055635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.013117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.159002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.373884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.674831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.019226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.404739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.744663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.293083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.899605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.527744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.203121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.006184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.904694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.664162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.876114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.217918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.336273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.725536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.122257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.779156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.282936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.910759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.668877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.470856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.528847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.541176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.691933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.497925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.406776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.067024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.033829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.774353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.698982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.617470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.576347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.747078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.527687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.132500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.312943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.463470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.618896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.066528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.058670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.478241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.855072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.731567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.179626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.722198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.238388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.245117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.664047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.331894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.349106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.358856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.028549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.677109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.225159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.940262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.037064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.514557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.242157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.829834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.919189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.534271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.283478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.885559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.415436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.078613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.365784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.027481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.071594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.282486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.466309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.633270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.878143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.842911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.247147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.174744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.504150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.885437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.785248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.909363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.814270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.520660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.307190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.204163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.299469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.436676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.382843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.282379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.974823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.773438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.544128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.439545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.325073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.002502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.368317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.047058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.586731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.282867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.898895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.997894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.841339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.402893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.786041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.045258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.305420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.596069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.784882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.100830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.234985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.439606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.649780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.536499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.441772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.340790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.313690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.212433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.039185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.793488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.469116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.043243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.527679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.013184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.413635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.891785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.277893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.596710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.859406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.101013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.284088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.441772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.552551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.619476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.662231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.674500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.659882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.618805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.556488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.467499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.373138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.265411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.147919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.016907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.871643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.731293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.588989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.433624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.287781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.117889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.954285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.801849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.674713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.556976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.452148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.378296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.321259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.286896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.270477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.277557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.307587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.364594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.448059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.557922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.701721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.889343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.126709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.438690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.739258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.464966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.888184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.360748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.858093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.404236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.012909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.675934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.407104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.185089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.122314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.045410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.102203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.125977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.281036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.353760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.599304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.929199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.292816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.782562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.339752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.961731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.632538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.380249] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.175018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.036041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.138306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.832855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.713959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.415619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.272797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.006042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.126587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.238922] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.254071] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256843] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259953] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.263533] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.267053] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.271333] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.276614] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284846] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296278] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.314424] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.340870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.384166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.443857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.522492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.627555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.762710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.932133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.140858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.376452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.655811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.989856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.381254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.817732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.296520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.868908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.478525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.142796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.874233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.651093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.490820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.528400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.708189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.005047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.304218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.626917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.063110] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.702694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.343990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.090664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.891598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.762596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.662086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.746521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.780880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.944988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.204781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.667515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.987373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.221382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.823570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.604984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.367859] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.342133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.262886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.103477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.177551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.439278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.697807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.887177] [T/O: true ][Cruise: false ] +[Elevator: -0.008074] [Roll: -0.001589] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.111786] [T/O: true ][Cruise: false ] +[Elevator: -0.154074] [Roll: -0.012191] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.388008] [T/O: true ][Cruise: false ] +[Elevator: -0.331585] [Roll: -0.000006] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.687279] [T/O: true ][Cruise: false ] +[Elevator: -0.330816] [Roll: -0.010006] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.101830] [T/O: true ][Cruise: false ] +[Elevator: -0.297371] [Roll: -0.020006] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.542877] [T/O: true ][Cruise: false ] +[Elevator: -0.309187] [Roll: -0.030006] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.051094] [T/O: true ][Cruise: false ] +[Elevator: -0.340698] [Roll: -0.001612] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.633026] [T/O: true ][Cruise: false ] +[Elevator: -0.425956] [Roll: -0.026615] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.239685] [T/O: true ][Cruise: false ] +[Elevator: -0.311231] [Roll: -0.036306] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.795090] [T/O: true ][Cruise: false ] +[Elevator: -0.210980] [Roll: -0.108972] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.472023] [T/O: true ][Cruise: false ] +[Elevator: -0.119256] [Roll: -0.165740] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.119034] [T/O: true ][Cruise: false ] +[Elevator: -0.061149] [Roll: -0.215936] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.229233] [T/O: true ][Cruise: false ] +[Elevator: -0.027282] [Roll: -0.283316] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.665512] [T/O: true ][Cruise: false ] +[Elevator: -0.000467] [Roll: -0.359511] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.155106] [T/O: true ][Cruise: false ] +[Elevator: 0.009533] [Roll: -0.362978] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.712891] [T/O: true ][Cruise: false ] +[Elevator: 0.013341] [Roll: -0.317115] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.242737] [T/O: true ][Cruise: false ] +[Elevator: 0.031960] [Roll: -0.224124] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.683304] [T/O: true ][Cruise: false ] +[Elevator: 0.050439] [Roll: -0.183520] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.052811] [T/O: true ][Cruise: false ] +[Elevator: 0.065758] [Roll: -0.194327] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.377457] [T/O: true ][Cruise: false ] +[Elevator: 0.056797] [Roll: -0.144023] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.628021] [T/O: true ][Cruise: false ] +[Elevator: 0.006108] [Roll: -0.011813] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.424118] [T/O: true ][Cruise: false ] +[Elevator: 0.016108] [Roll: 0.006426] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.513275] [T/O: true ][Cruise: false ] +[Elevator: 0.026108] [Roll: -0.009941] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.278580] [T/O: true ][Cruise: false ] +[Elevator: 0.036108] [Roll: -0.000006] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.096909] [T/O: true ][Cruise: false ] +[Elevator: 0.046108] [Roll: 0.000045] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.172653] [T/O: true ][Cruise: false ] +[Elevator: 0.056108] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.191406] [T/O: true ][Cruise: false ] +[Elevator: 0.066108] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.119461] [T/O: true ][Cruise: false ] +[Elevator: 0.076108] [Roll: 0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.054306] [T/O: true ][Cruise: false ] +[Elevator: 0.086108] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.977524] [T/O: true ][Cruise: false ] +[Elevator: 0.096108] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.804626] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.754517] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.382233] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.070000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.808014] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.080000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.473679] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.090000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.024567] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.100000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.652283] [T/O: true ][Cruise: false ] +[Elevator: 0.106108] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.366959] [T/O: true ][Cruise: false ] +[Elevator: -0.031188] [Roll: 0.051473] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.075027] [T/O: true ][Cruise: false ] +[Elevator: -0.112945] [Roll: 0.168654] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.781097] [T/O: true ][Cruise: false ] +[Elevator: -0.179994] [Roll: 0.218331] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.541916] [T/O: true ][Cruise: false ] +[Elevator: -0.287531] [Roll: 0.210705] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.266785] [T/O: true ][Cruise: false ] +[Elevator: -0.370000] [Roll: 0.207232] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.841171] [T/O: true ][Cruise: false ] +[Elevator: -0.404602] [Roll: 0.183312] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.486069] [T/O: true ][Cruise: false ] +[Elevator: -0.423850] [Roll: 0.129692] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.181519] [T/O: true ][Cruise: false ] +[Elevator: -0.437050] [Roll: 0.072497] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.871353] [T/O: true ][Cruise: false ] +[Elevator: -0.449230] [Roll: 0.021091] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.496323] [T/O: true ][Cruise: false ] +[Elevator: -0.448662] [Roll: 0.000328] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.132690] [T/O: true ][Cruise: false ] +[Elevator: -0.426097] [Roll: -0.004644] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.872681] [T/O: true ][Cruise: false ] +[Elevator: -0.390259] [Roll: -0.036822] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.443283] [T/O: true ][Cruise: false ] +[Elevator: -0.343656] [Roll: -0.087629] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.000137] [T/O: true ][Cruise: false ] +[Elevator: -0.301234] [Roll: -0.177101] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.374405] [T/O: true ][Cruise: false ] +[Elevator: -0.243974] [Roll: -0.297306] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.751541] [T/O: true ][Cruise: false ] +[Elevator: -0.185154] [Roll: -0.414326] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.019058] [T/O: true ][Cruise: false ] +[Elevator: -0.144844] [Roll: -0.461834] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.132446] [T/O: true ][Cruise: false ] +[Elevator: -0.097073] [Roll: -0.481841] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.150772] [T/O: true ][Cruise: false ] +[Elevator: -0.030855] [Roll: -0.482849] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.022217] [T/O: true ][Cruise: false ] +[Elevator: 0.001037] [Roll: -0.420483] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.842300] [T/O: true ][Cruise: false ] +[Elevator: 0.027892] [Roll: -0.341101] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.514282] [T/O: true ][Cruise: false ] +[Elevator: 0.055252] [Roll: -0.255402] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.046265] [T/O: true ][Cruise: false ] +[Elevator: 0.089323] [Roll: -0.172515] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.483459] [T/O: true ][Cruise: false ] +[Elevator: 0.121684] [Roll: -0.089297] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.821442] [T/O: true ][Cruise: false ] +[Elevator: 0.139794] [Roll: -0.025790] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.076324] [T/O: true ][Cruise: false ] +[Elevator: 0.144193] [Roll: -0.000069] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.201599] [T/O: true ][Cruise: false ] +[Elevator: 0.138586] [Roll: 0.017480] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.233795] [T/O: true ][Cruise: false ] +[Elevator: 0.119637] [Roll: 0.050393] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.186890] [T/O: true ][Cruise: false ] +[Elevator: 0.096550] [Roll: 0.128669] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.008575] [T/O: true ][Cruise: false ] +[Elevator: 0.083222] [Roll: 0.237643] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.740479] [T/O: true ][Cruise: false ] +[Elevator: 0.060507] [Roll: 0.293975] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.431427] [T/O: true ][Cruise: false ] +[Elevator: 0.034257] [Roll: 0.325249] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.123199] [T/O: true ][Cruise: false ] +[Elevator: 0.014941] [Roll: 0.359172] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.780762] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.355373] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.425171] [T/O: true ][Cruise: false ] +[Elevator: -0.067892] [Roll: 0.294660] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.393402] [T/O: true ][Cruise: false ] +[Elevator: -0.132551] [Roll: 0.261441] [Yaw: 0.010675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.854492] [T/O: true ][Cruise: false ] +[Elevator: -0.246427] [Roll: 0.027749] [Yaw: 0.265014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.408417] [T/O: true ][Cruise: false ] +[Elevator: -0.232092] [Roll: 0.033073] [Yaw: 0.391295] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.982056] [T/O: true ][Cruise: false ] +[Elevator: -0.207293] [Roll: 0.052118] [Yaw: 0.581130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.737549] [T/O: true ][Cruise: false ] +[Elevator: -0.150385] [Roll: 0.041067] [Yaw: 0.604247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.552124] [T/O: true ][Cruise: false ] +[Elevator: -0.121739] [Roll: 0.038813] [Yaw: 0.614247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.106140] [T/O: true ][Cruise: false ] +[Elevator: -0.084186] [Roll: 0.027465] [Yaw: 0.645357] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.529510] [T/O: true ][Cruise: false ] +[Elevator: -0.046189] [Roll: 0.018618] [Yaw: 0.633431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.044067] [T/O: true ][Cruise: false ] +[Elevator: -0.010323] [Roll: 0.001059] [Yaw: 0.526821] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.389893] [T/O: true ][Cruise: false ] +[Elevator: -0.005162] [Roll: -0.000712] [Yaw: 0.476590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.664581] [T/O: true ][Cruise: false ] +[Elevator: 0.004838] [Roll: -0.060507] [Yaw: 0.346250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.922455] [T/O: true ][Cruise: false ] +[Elevator: 0.014838] [Roll: -0.105719] [Yaw: 0.231532] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.122498] [T/O: true ][Cruise: false ] +[Elevator: 0.000540] [Roll: -0.144249] [Yaw: 0.148135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.262207] [T/O: true ][Cruise: false ] +[Elevator: 0.010290] [Roll: -0.180674] [Yaw: 0.067017] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.356079] [T/O: true ][Cruise: false ] +[Elevator: 0.004573] [Roll: -0.162257] [Yaw: 0.019108] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.423950] [T/O: true ][Cruise: false ] +[Elevator: 0.014573] [Roll: -0.098591] [Yaw: 0.000712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.448273] [T/O: true ][Cruise: false ] +[Elevator: 0.024573] [Roll: -0.071684] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.436249] [T/O: true ][Cruise: false ] +[Elevator: 0.034573] [Roll: -0.013148] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.390778] [T/O: true ][Cruise: false ] +[Elevator: 0.044573] [Roll: -0.003148] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.324646] [T/O: true ][Cruise: false ] +[Elevator: 0.054573] [Roll: -0.000831] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.233887] [T/O: true ][Cruise: false ] +[Elevator: 0.064573] [Roll: 0.009169] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.106720] [T/O: true ][Cruise: false ] +[Elevator: 0.074573] [Roll: 0.019169] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.958801] [T/O: true ][Cruise: false ] +[Elevator: 0.084573] [Roll: 0.029169] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.754059] [T/O: true ][Cruise: false ] +[Elevator: 0.094573] [Roll: 0.039169] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.545227] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.049169] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.363129] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.059169] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.183624] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.069169] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.006927] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.079169] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.839844] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.089169] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.691040] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.099169] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.573242] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.109169] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.481567] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.119169] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.422882] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.129169] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.402222] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.139169] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.425110] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: 0.149169] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.496765] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: -0.000114] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.623199] [T/O: true ][Cruise: false ] +[Elevator: 0.104573] [Roll: -0.101984] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.803619] [T/O: true ][Cruise: false ] +[Elevator: -0.025730] [Roll: -0.236174] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.036102] [T/O: true ][Cruise: false ] +[Elevator: -0.063757] [Roll: -0.263386] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.299805] [T/O: true ][Cruise: false ] +[Elevator: -0.111250] [Roll: -0.251001] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.658417] [T/O: true ][Cruise: false ] +[Elevator: -0.186642] [Roll: -0.270168] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.145630] [T/O: true ][Cruise: false ] +[Elevator: -0.269783] [Roll: -0.218976] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.674103] [T/O: true ][Cruise: false ] +[Elevator: -0.285130] [Roll: -0.174746] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.256104] [T/O: true ][Cruise: false ] +[Elevator: -0.287109] [Roll: -0.123766] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.873901] [T/O: true ][Cruise: false ] +[Elevator: -0.292182] [Roll: -0.052672] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.548553] [T/O: true ][Cruise: false ] +[Elevator: -0.292019] [Roll: -0.002518] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.174561] [T/O: true ][Cruise: false ] +[Elevator: -0.298451] [Roll: 0.007482] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.902557] [T/O: true ][Cruise: false ] +[Elevator: -0.295803] [Roll: 0.042082] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.519531] [T/O: true ][Cruise: false ] +[Elevator: -0.279371] [Roll: 0.060388] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.212433] [T/O: true ][Cruise: false ] +[Elevator: -0.266421] [Roll: 0.081351] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.908203] [T/O: true ][Cruise: false ] +[Elevator: -0.258005] [Roll: 0.121794] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.563141] [T/O: true ][Cruise: false ] +[Elevator: -0.244665] [Roll: 0.150785] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.254456] [T/O: true ][Cruise: false ] +[Elevator: -0.228892] [Roll: 0.170056] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.911530] [T/O: true ][Cruise: false ] +[Elevator: -0.214649] [Roll: 0.194117] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.514465] [T/O: true ][Cruise: false ] +[Elevator: -0.181829] [Roll: 0.190103] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.059174] [T/O: true ][Cruise: false ] +[Elevator: -0.140581] [Roll: 0.088552] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.583649] [T/O: true ][Cruise: false ] +[Elevator: -0.078661] [Roll: -0.026292] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.049286] [T/O: true ][Cruise: false ] +[Elevator: -0.021826] [Roll: -0.200714] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.501465] [T/O: true ][Cruise: false ] +[Elevator: -0.010190] [Roll: -0.226815] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.079956] [T/O: true ][Cruise: false ] +[Elevator: -0.000190] [Roll: -0.117814] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.328705] [T/O: true ][Cruise: false ] +[Elevator: 0.008569] [Roll: -0.093298] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.561462] [T/O: true ][Cruise: false ] +[Elevator: 0.007303] [Roll: -0.001441] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.745605] [T/O: true ][Cruise: false ] +[Elevator: 0.003698] [Roll: 0.017202] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.898804] [T/O: true ][Cruise: false ] +[Elevator: 0.005396] [Roll: 0.000156] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.026550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.042347] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.121185] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.035792] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.210205] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.009185] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.291656] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.019185] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.373657] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.001857] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.460602] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.011857] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.593140] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.000063] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.705780] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.010063] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.845917] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.020063] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.998077] [T/O: true ][Cruise: false ] +[Elevator: -0.025891] [Roll: 0.000414] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.185638] [T/O: true ][Cruise: false ] +[Elevator: -0.095585] [Roll: 0.002109] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.414001] [T/O: true ][Cruise: false ] +[Elevator: -0.115699] [Roll: 0.000397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.702362] [T/O: true ][Cruise: false ] +[Elevator: -0.104657] [Roll: 0.010397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.004120] [T/O: true ][Cruise: false ] +[Elevator: -0.105666] [Roll: 0.020397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.398621] [T/O: true ][Cruise: false ] +[Elevator: -0.081907] [Roll: 0.030397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.790802] [T/O: true ][Cruise: false ] +[Elevator: -0.049592] [Roll: 0.040397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.261749] [T/O: true ][Cruise: false ] +[Elevator: -0.046865] [Roll: 0.050397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.769928] [T/O: true ][Cruise: false ] +[Elevator: -0.043034] [Roll: 0.060397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.370728] [T/O: true ][Cruise: false ] +[Elevator: -0.040145] [Roll: 0.070397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.989532] [T/O: true ][Cruise: false ] +[Elevator: -0.040189] [Roll: 0.080397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.686188] [T/O: true ][Cruise: false ] +[Elevator: -0.034554] [Roll: 0.090397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.354858] [T/O: true ][Cruise: false ] +[Elevator: -0.032190] [Roll: 0.100397] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.068390] [T/O: true ][Cruise: false ] +[Elevator: -0.015736] [Roll: -0.005780] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.867859] [T/O: true ][Cruise: false ] +[Elevator: -0.000003] [Roll: -0.003018] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.638550] [T/O: true ][Cruise: false ] +[Elevator: 0.009997] [Roll: 0.006982] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.533173] [T/O: true ][Cruise: false ] +[Elevator: 0.019997] [Roll: 0.002695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.470123] [T/O: true ][Cruise: false ] +[Elevator: 0.029997] [Roll: 0.012695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.475464] [T/O: true ][Cruise: false ] +[Elevator: 0.039997] [Roll: 0.022695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.487122] [T/O: true ][Cruise: false ] +[Elevator: 0.049997] [Roll: 0.032695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.431244] [T/O: true ][Cruise: false ] +[Elevator: 0.059997] [Roll: 0.042695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.606995] [T/O: true ][Cruise: false ] +[Elevator: 0.069997] [Roll: 0.052695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.774872] [T/O: true ][Cruise: false ] +[Elevator: 0.079997] [Roll: 0.062695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.101563] [T/O: true ][Cruise: false ] +[Elevator: 0.089997] [Roll: 0.072695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.474182] [T/O: true ][Cruise: false ] +[Elevator: 0.099997] [Roll: 0.082695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.847015] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.092695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.272217] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.102695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.751190] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.112695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.285950] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.122695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.003479] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.132695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.748352] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.142695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.509094] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.328522] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.315369] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.483429] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.655212] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.869080] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.168762] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.630035] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.152695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.172668] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.142695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.768433] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.132695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.548706] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.122695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.417358] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.112695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.265289] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.102695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.256805] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.092695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.493652] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.117249] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.072695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.675201] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.062695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.538208] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.052695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.829956] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.042695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.021698] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.032695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.924530] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.022695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.016846] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.012695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.066681] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.002695] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.188446] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.007305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.563324] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.017305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.458069] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.027305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.839691] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.037305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.354736] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.047305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.949463] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.057305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.510315] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.067305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.348633] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.077305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.424683] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.087305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.188263] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.097305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.537018] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.107305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.507141] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.117305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.251160] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.127305] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.320709] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.137305] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.449066] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.147305] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.391571] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.568451] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.704071] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.651825] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.717194] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.004120] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.840942] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.345825] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.197937] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.115784] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.351074] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.857056] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.135254] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.945984] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.101868] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.157305] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.560547] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.147305] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.589600] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.137305] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.872131] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.127305] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.507263] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.117305] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.462097] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.107305] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.816406] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.097305] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.707764] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.087305] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.191162] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.077305] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.775391] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.067305] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.313904] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.057305] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.811279] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.047305] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.275574] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.037305] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.764893] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.027305] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.338379] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.017305] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.826965] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: -0.007305] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.312927] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.002695] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.712830] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.012695] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.896729] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.022695] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.050720] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.032695] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.245300] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.042695] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.512695] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.052695] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.455078] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.062695] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.354126] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.072695] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.109680] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.791199] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.629456] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.323669] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.880615] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.305359] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.835876] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.008728] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.272949] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.703186] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.539673] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.820923] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.038025] [T/O: true ][Cruise: false ] +[Elevator: 0.109997] [Roll: 0.082695] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.212646] [T/O: true ][Cruise: false ] +[Elevator: -0.000039] [Roll: 0.003698] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.737976] [T/O: true ][Cruise: false ] +[Elevator: 0.007303] [Roll: 0.136149] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.430176] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.348104] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.267822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.312353] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.001038] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.195379] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.364868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.232652] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.049988] [T/O: true ][Cruise: false ] +[Elevator: -0.008843] [Roll: 0.267925] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.525452] [T/O: true ][Cruise: false ] +[Elevator: -0.066024] [Roll: 0.170143] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.033447] [T/O: true ][Cruise: false ] +[Elevator: -0.092081] [Roll: 0.003361] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.420288] [T/O: true ][Cruise: false ] +[Elevator: -0.115185] [Roll: 0.027566] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.503601] [T/O: true ][Cruise: false ] +[Elevator: -0.172251] [Roll: 0.056140] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.016357] [T/O: true ][Cruise: false ] +[Elevator: -0.175746] [Roll: 0.013482] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.143738] [T/O: true ][Cruise: false ] +[Elevator: -0.152013] [Roll: 0.026172] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.234314] [T/O: true ][Cruise: false ] +[Elevator: -0.065758] [Roll: 0.000094] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.259094] [T/O: true ][Cruise: false ] +[Elevator: -0.008601] [Roll: 0.003986] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.128540] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.003268] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.852234] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000405] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.488708] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000135] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.039795] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.414185] [T/O: true ][Cruise: false ] +[Elevator: 0.046527] [Roll: 0.000185] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.679626] [T/O: true ][Cruise: false ] +[Elevator: 0.114482] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.830017] [T/O: true ][Cruise: false ] +[Elevator: 0.149672] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.793579] [T/O: true ][Cruise: false ] +[Elevator: 0.158472] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.702637] [T/O: true ][Cruise: false ] +[Elevator: 0.148733] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.502014] [T/O: true ][Cruise: false ] +[Elevator: 0.126295] [Roll: 0.001521] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.090332] [T/O: true ][Cruise: false ] +[Elevator: 0.079514] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.655579] [T/O: true ][Cruise: false ] +[Elevator: 0.003123] [Roll: 0.006078] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.054138] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000006] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.362366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.524353] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000057] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.568665] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.503662] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.002330] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.328613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.039917] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000702] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.652283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.182983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.331787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.650757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.804688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.846436] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.887085] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.795227] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.553162] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.240356] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.862793] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.035339] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.764771] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.175964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.055304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.069781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.082874] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.093787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.103333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109871] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115748] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120679] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124944] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128532] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131648] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134458] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137012] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140424] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143531] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146721] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147523] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148648] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149150] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149156] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148504] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148232] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148149] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147950] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147707] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147205] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146329] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144894] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142816] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139412] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130370] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117871] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108831] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107723] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106938] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106441] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107161] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113754] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118149] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136092] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138728] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141140] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142865] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144339] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147558] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148368] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148605] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148650] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149247] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150311] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151528] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152650] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154193] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154999] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156204] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157533] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158616] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159511] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164488] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164467] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164391] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164286] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164424] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165114] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166998] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167302] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167815] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168428] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169818] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170336] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171246] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171977] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174872] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176966] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177810] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178115] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178217] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178409] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178667] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179413] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179912] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180985] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181819] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182678] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183419] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184026] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185168] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186411] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187577] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188395] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189078] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189236] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188512] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187021] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183485] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178959] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178137] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178435] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179766] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181730] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191081] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192510] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193717] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194993] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196735] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198615] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200548] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202319] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203971] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205380] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206450] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212504] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.252310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.271749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.283340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.312057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.328927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.346133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.368935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.395978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.426438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.461902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.504211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.550883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.612130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.675855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.754221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.849034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.949048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.063291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.199550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.339582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.510568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.719922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.932732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.168453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.425779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.723400] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.032784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.404675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.810045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.251436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.725260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.217497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.796543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.382908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.010096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.719481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.499779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.317472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.186913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.119841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.100254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.104738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.201275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.404211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.658361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.064232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.424694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.008507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.406128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.061371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.817688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.467422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.184261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.037018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.750710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.643536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.639919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.840160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.224396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.704475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.206665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.673157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.462234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.078415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.698204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.294464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.018875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.831253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.601646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.547913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.213631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.177238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.125824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.157814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.061287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.009743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.245888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.274857] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.586441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.917587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.421417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.906677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.259354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.855789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.450851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.264297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.825943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.395004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.076736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.936172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.883179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.794174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.554077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.042297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.623642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.542511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.548248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.569183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.549530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.559082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.598907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.560898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.412186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.278534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.939575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.447525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.092026] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.653870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.425888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.995163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.767776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.491333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.941742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.733047] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.515045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.263153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.005737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.652557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.287079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.895050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.364655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.128296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.864594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.482178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.073547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.502075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.875488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.262848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.459167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.673218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.747253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.667664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.641388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.577820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.579498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.400452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.309631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.110413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.748383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.400757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.989563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.514130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.909668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.960602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.135956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.149719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.200226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.119080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.118286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.896271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.651184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.351807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.014679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.660553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.212189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.785522] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.300201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.772034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.252686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.680023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.062317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.385925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.676941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.939636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.191833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.401215] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.588745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.690430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.770447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.828247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.859619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.867706] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.855225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.823975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.780365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.716431] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.133748] [Yaw: -0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.639130] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.133748] [Yaw: -0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.554840] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.133748] [Yaw: -0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.460724] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.357422] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.248627] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.129181] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: 0.318108] [Yaw: 0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.998352] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.852112] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.698120] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.519318] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.322571] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.109802] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.868134] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.601196] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.309143] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.988159] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.647644] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.323914] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.920685] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.358357] [Yaw: 0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.516998] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.389155] [Yaw: 0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.032318] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.420448] [Yaw: 0.084090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.528351] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.430986] [Yaw: 0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.021271] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.441575] [Yaw: 0.088315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.406921] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.462905] [Yaw: 0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.760773] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.462905] [Yaw: 0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.079651] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.372284] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.635010] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.870270] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.081787] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.370117] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.640106] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.820282] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.077698] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.237366] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.467560] [T/O: true ][Cruise: false ] +[Elevator: -0.005249] [Roll: 0.473645] [Yaw: 0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.599487] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: 0.378833] [Yaw: 0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.724884] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: 0.176777] [Yaw: 0.035355] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.834625] [T/O: true ][Cruise: false ] +[Elevator: 0.026635] [Roll: 0.142159] [Yaw: 0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.791046] [T/O: true ][Cruise: false ] +[Elevator: 0.059770] [Roll: 0.093350] [Yaw: 0.018670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.630219] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: 0.078060] [Yaw: 0.015612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.592041] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.382050] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.054932] [T/O: true ][Cruise: false ] +[Elevator: 0.081831] [Roll: 0.063349] [Yaw: 0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.920044] [T/O: true ][Cruise: false ] +[Elevator: 0.081831] [Roll: 0.056234] [Yaw: 0.011247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.618988] [T/O: true ][Cruise: false ] +[Elevator: 0.081831] [Roll: 0.049295] [Yaw: 0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.149536] [T/O: true ][Cruise: false ] +[Elevator: 0.089477] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.674683] [T/O: true ][Cruise: false ] +[Elevator: 0.105161] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.098267] [T/O: true ][Cruise: false ] +[Elevator: 0.105161] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.502960] [T/O: true ][Cruise: false ] +[Elevator: 0.105161] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.909637] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.239532] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.462891] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.078060] [Yaw: -0.015612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.643555] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.125442] [Yaw: -0.025088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.668823] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.150671] [Yaw: -0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.584290] [T/O: true ][Cruise: false ] +[Elevator: 0.097256] [Roll: -0.150671] [Yaw: -0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.563751] [T/O: true ][Cruise: false ] +[Elevator: 0.089477] [Roll: -0.159279] [Yaw: -0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.550659] [T/O: true ][Cruise: false ] +[Elevator: 0.081831] [Roll: -0.167983] [Yaw: -0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.350281] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.176777] [Yaw: -0.035355] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.343323] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.176777] [Yaw: -0.035355] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.113647] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.185659] [Yaw: -0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.022766] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.185659] [Yaw: -0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.856873] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.185659] [Yaw: -0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.515472] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.194628] [Yaw: -0.038926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.143311] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.203680] [Yaw: -0.040736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.880219] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.212813] [Yaw: -0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.559357] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.212813] [Yaw: -0.042563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.059296] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.222025] [Yaw: -0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.586121] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: -0.231314] [Yaw: -0.046263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.142120] [T/O: true ][Cruise: false ] +[Elevator: 0.066969] [Roll: -0.259626] [Yaw: -0.051925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.837372] [T/O: true ][Cruise: false ] +[Elevator: 0.052742] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.180725] [T/O: true ][Cruise: false ] +[Elevator: 0.039249] [Roll: -0.318108] [Yaw: -0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.713654] [T/O: true ][Cruise: false ] +[Elevator: 0.026635] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.242554] [T/O: true ][Cruise: false ] +[Elevator: 0.015139] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.006805] [T/O: true ][Cruise: false ] +[Elevator: 0.005249] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.424347] [T/O: true ][Cruise: false ] +[Elevator: -0.001330] [Roll: -0.338113] [Yaw: -0.067623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.807770] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.352386] [T/O: true ][Cruise: false ] +[Elevator: -0.015139] [Roll: -0.348205] [Yaw: -0.069641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.188324] [T/O: true ][Cruise: false ] +[Elevator: -0.026635] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.886780] [T/O: true ][Cruise: false ] +[Elevator: -0.026635] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.606049] [T/O: true ][Cruise: false ] +[Elevator: -0.039249] [Roll: -0.368566] [Yaw: -0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.464203] [T/O: true ][Cruise: false ] +[Elevator: -0.039249] [Roll: -0.378833] [Yaw: -0.075767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.091339] [T/O: true ][Cruise: false ] +[Elevator: -0.045896] [Roll: -0.389155] [Yaw: -0.077831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.025085] [T/O: true ][Cruise: false ] +[Elevator: -0.045896] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.028061] [T/O: true ][Cruise: false ] +[Elevator: -0.045896] [Roll: -0.462905] [Yaw: -0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.156601] [T/O: true ][Cruise: false ] +[Elevator: -0.045896] [Roll: -0.473645] [Yaw: -0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.220764] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.629349] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.057724] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.578415] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.072983] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.635361] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.320480] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.517089] [Yaw: -0.103418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.113220] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.528067] [Yaw: -0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.076553] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.528067] [Yaw: -0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.179367] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.539091] [Yaw: -0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.312302] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.539091] [Yaw: -0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.559601] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.962296] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.491379] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.561275] [Yaw: -0.112255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.187866] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.594881] [Yaw: -0.118976] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.950577] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.840775] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.663232] [Yaw: -0.132646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.832214] [T/O: true ][Cruise: false ] +[Elevator: -0.052742] [Roll: -0.674767] [Yaw: -0.134953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.935059] [T/O: true ][Cruise: false ] +[Elevator: -0.052742] [Roll: -0.686341] [Yaw: -0.137268] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.152359] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.686341] [Yaw: -0.137268] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.451660] [T/O: true ][Cruise: false ] +[Elevator: -0.074325] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.865585] [T/O: true ][Cruise: false ] +[Elevator: -0.081831] [Roll: -0.539091] [Yaw: -0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.388870] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.992279] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.399532] [Yaw: -0.079906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.595627] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.340225] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.328080] [Yaw: -0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.123627] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.318108] [Yaw: -0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.961502] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.318108] [Yaw: -0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.829956] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.318108] [Yaw: -0.063622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.737350] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.278855] [Yaw: -0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.646271] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.250117] [Yaw: -0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.492691] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.250117] [Yaw: -0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.409866] [T/O: true ][Cruise: false ] +[Elevator: -0.089477] [Roll: -0.250117] [Yaw: -0.050023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.293091] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.176758] [T/O: true ][Cruise: false ] +[Elevator: -0.052742] [Roll: -0.517089] [Yaw: -0.103418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.980270] [T/O: true ][Cruise: false ] +[Elevator: -0.052742] [Roll: -0.528067] [Yaw: -0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.699524] [T/O: true ][Cruise: false ] +[Elevator: -0.052742] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.390717] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.000839] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.550161] [Yaw: -0.110032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.521362] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.539091] [Yaw: -0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.986084] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.528067] [Yaw: -0.105613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.352646] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.517089] [Yaw: -0.103418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.618317] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.760941] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.506157] [Yaw: -0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.780441] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.665955] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.410904] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.495272] [Yaw: -0.099054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.017303] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.484434] [Yaw: -0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.348495] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.473645] [Yaw: -0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.543701] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.473645] [Yaw: -0.094729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.515945] [T/O: true ][Cruise: false ] +[Elevator: -0.059770] [Roll: -0.430986] [Yaw: -0.086197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.293182] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.308199] [Yaw: -0.061640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.830719] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.231314] [Yaw: -0.046263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.091293] [T/O: true ][Cruise: false ] +[Elevator: -0.066969] [Roll: -0.133748] [Yaw: -0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.017899] [T/O: true ][Cruise: false ] +[Elevator: -0.032820] [Roll: 0.003162] [Yaw: 0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.670746] [T/O: true ][Cruise: false ] +[Elevator: -0.009941] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.926682] [T/O: true ][Cruise: false ] +[Elevator: 0.032820] [Roll: 0.185659] [Yaw: 0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.963959] [T/O: true ][Cruise: false ] +[Elevator: 0.052742] [Roll: 0.240679] [Yaw: 0.048136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.496353] [T/O: true ][Cruise: false ] +[Elevator: 0.074325] [Roll: 0.368566] [Yaw: 0.073713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.550476] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.662582] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.479950] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.972488] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.142029] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.993973] [T/O: true ][Cruise: false ] +[Elevator: 0.113187] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.471756] [T/O: true ][Cruise: false ] +[Elevator: 0.190133] [Roll: 0.506157] [Yaw: 0.101231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.669800] [T/O: true ][Cruise: false ] +[Elevator: 0.283704] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.528015] [T/O: true ][Cruise: false ] +[Elevator: 0.293453] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.966537] [T/O: true ][Cruise: false ] +[Elevator: 0.313146] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.069427] [T/O: true ][Cruise: false ] +[Elevator: 0.323086] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.966476] [T/O: true ][Cruise: false ] +[Elevator: 0.333089] [Roll: 0.539091] [Yaw: 0.107818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.181412] [T/O: true ][Cruise: false ] +[Elevator: 0.353274] [Roll: 0.484434] [Yaw: 0.096887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.326019] [T/O: true ][Cruise: false ] +[Elevator: 0.394337] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.193710] [T/O: true ][Cruise: false ] +[Elevator: 0.404741] [Roll: 0.278855] [Yaw: 0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.588867] [T/O: true ][Cruise: false ] +[Elevator: 0.489847] [Roll: 0.259626] [Yaw: 0.051925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.862747] [T/O: true ][Cruise: false ] +[Elevator: 0.750687] [Roll: 0.259626] [Yaw: 0.051925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.098488] [T/O: true ][Cruise: false ] +[Elevator: 0.774367] [Roll: 0.269206] [Yaw: 0.053841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.774367] [Roll: 0.278855] [Yaw: 0.055771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.762509] [Roll: 0.298352] [Yaw: 0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.738902] [Roll: 0.328080] [Yaw: 0.065616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.634572] [Roll: 0.420448] [Yaw: 0.084090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.544620] [Roll: 0.462905] [Yaw: 0.092581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.190133] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.383987] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.383987] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.383987] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.383987] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.834200] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -0.907146] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: -1.000000] [Roll: 1.000000] [Yaw: 0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.321449] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.147141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147451] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147691] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147871] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147998] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148172] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148261] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148455] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148537] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148688] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149431] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150293] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150354] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149991] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149722] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148335] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147954] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147247] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146008] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144261] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141849] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127260] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123229] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114429] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112137] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108937] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108770] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110585] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112736] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117087] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121508] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128421] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130898] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133474] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136144] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142526] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145847] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146927] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148032] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148405] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148614] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148564] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148554] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149724] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151789] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152725] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153234] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153625] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154120] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154872] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156633] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157412] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158160] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160151] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162756] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165847] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166174] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166673] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168946] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169172] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169331] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168967] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168993] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169195] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169421] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169547] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169986] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170399] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170961] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171432] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171983] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172487] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172921] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173641] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174225] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174891] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175773] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176516] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176710] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176618] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176400] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176503] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176778] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178053] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178889] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179560] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180392] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183176] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184652] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185910] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187943] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188126] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184982] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183267] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181419] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179410] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177535] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179862] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184114] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186776] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189091] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191012] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192452] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193463] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194593] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195930] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197643] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199602] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201028] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202470] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203794] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205044] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.230128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.246928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256619] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.266906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.277754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.290152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.303987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.319438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.337892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.359248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.385015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.413248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.445430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.483048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.527090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.579077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.637709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.703612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.779572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.866120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.968671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.078358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.204907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.347300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.506188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.688484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.882532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.092863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.328712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.583988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.866304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.191877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.496319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.865803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.268835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.709475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.136280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.603203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.103952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.657383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.220274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.833330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.452106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.095093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.825684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.561861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.417509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.257177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.170256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.062944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.120975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.113703] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.239870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.504471] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.794613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.043800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.483150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.949650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.370777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.007690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.712708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.317348] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.998943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.808712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.678585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.661263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.756031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.864223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.079731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.013885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.012165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.127319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.472046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.516617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.704620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.124863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.452232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.727547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.287560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.892662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.509323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.042572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.515846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.896492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.614204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.212173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.826912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.665627] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.269890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.995834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.600739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.476547] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.533417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.260658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.337196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.441978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.276764] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.497299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.286697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.493378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.716827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.741699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.860931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.083603] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.099380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.011841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.383698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.765579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.933105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.177383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.713394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.353256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.672440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.653885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.934509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.192200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.466705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.922852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.859985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.035675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.299042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.296082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.334930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.354187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.564865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.637741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.958313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.823380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.790588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.868423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.945877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.003326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.572723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.850723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.450378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.727280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.924561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.596558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.538605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.432739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.173798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.987152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.768951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.700714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.428833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.488129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.122589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.599854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.072815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.495605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.080109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.424316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.797180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.973480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.167877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.455048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.465027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.802368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.184540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.319580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.409790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.466980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.343201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.353607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.182190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.143555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.042847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.700928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.518585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.274658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.822449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.549286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.073639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.674927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.020447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.480347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.764252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.996460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.260620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.401001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.637512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.711731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.893707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.848022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.921143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.858337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.833923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.730988] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.570618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.408966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.188049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.990875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.695618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.412079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.087585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.711853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.375641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.017578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.522125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.079407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.569550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.057190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.533508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.940063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.362396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.766449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.131561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.469818] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.776581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.108795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.370453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.672028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.971100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.254181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.486053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.738861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.935120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.117188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.295441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.452179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.619812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.759003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.910126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.042450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.173248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.317322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.470978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.566681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.658051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.751068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.854309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.960205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.062561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.182648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.315765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.450867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.567657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.722290] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.858765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.998291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.154114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.334259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.497253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.696075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.883667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.100128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.324707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.611877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.865112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.173828] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.464233] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.813751] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.138245] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.512482] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.933929] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.360016] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.288352] [Yaw: -0.029670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.919128] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.278352] [Yaw: 0.000330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.502960] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.268352] [Yaw: 0.030330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.175934] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.258352] [Yaw: 0.060330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.008392] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.248352] [Yaw: 0.090330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.055603] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.238352] [Yaw: 0.120330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.101471] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.228352] [Yaw: 0.150330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.422913] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.218352] [Yaw: 0.180330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.802399] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.208352] [Yaw: 0.210330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.682098] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.198352] [Yaw: 0.240330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.682434] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.188352] [Yaw: 0.270330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.564911] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.178352] [Yaw: 0.300330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.859894] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.168352] [Yaw: 0.330330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.342804] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.158352] [Yaw: 0.360330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.051697] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.866028] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.866272] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.015808] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.024414] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.423737] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.298352] [Yaw: -0.059670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.013611] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.288352] [Yaw: -0.029670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.408661] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.278352] [Yaw: 0.000330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.071075] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.268352] [Yaw: 0.030330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.795776] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.258352] [Yaw: 0.060330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.550842] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.248352] [Yaw: 0.090330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.434967] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.238352] [Yaw: 0.120330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.466919] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.228352] [Yaw: 0.150330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.625732] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.218352] [Yaw: 0.180330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.769989] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.208352] [Yaw: 0.210330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.071106] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.198352] [Yaw: 0.240330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.279144] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.188352] [Yaw: 0.270330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.541901] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.178352] [Yaw: 0.300330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.657715] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.168352] [Yaw: 0.330330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.774811] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.158352] [Yaw: 0.360330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.942200] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.148352] [Yaw: 0.390330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.842743] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.138352] [Yaw: 0.420330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.120026] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.128352] [Yaw: 0.450330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.333221] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.118352] [Yaw: 0.480330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.664093] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.798340] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.735077] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.526794] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.108215] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.580627] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.680542] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.520569] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.443787] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.037903] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.480103] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.808594] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.855164] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.834839] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.550049] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.168579] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.518738] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.666016] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.679565] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.484924] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.116882] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.518311] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.684204] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.624573] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.327820] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.782898] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.953186] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.789490] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.407959] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.762756] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.818848] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.747192] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.410950] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.108352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.742493] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.098352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.916565] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.088352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.645447] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.078352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.155884] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.068352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.455444] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.058352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.248169] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.048352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.528381] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.038352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.682312] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.028352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.625488] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.018352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.918274] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: -0.008352] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.217102] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.001648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.074707] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.011648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.814758] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.021648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.200256] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.031648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.061005] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.041648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.496552] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.051648] [Yaw: 0.480330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.004639] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.061648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.416473] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.071648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.631287] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.081648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.205688] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.091648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.763916] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.101648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.364105] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.111648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.500549] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.121648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.847839] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.131648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.154266] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.141648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.137054] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.659393] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.211456] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.530121] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.842529] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.030823] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.075562] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.050812] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.912872] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.603302] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.477570] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.402924] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.612396] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.575806] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.699295] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.143631] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.531052] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.287415] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.531693] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.372986] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.098541] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.491943] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.409363] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.485626] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.082703] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.356194] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.894234] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.821663] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.322105] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.587166] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.669571] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.540520] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.183662] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.295998] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.017700] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.415192] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.455193] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.273529] [T/O: true ][Cruise: false ] +[Elevator: 0.692142] [Roll: 0.151648] [Yaw: 0.510330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.888947] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.120376] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120366] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120280] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120143] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120171] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120214] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120258] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120279] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120282] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120900] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120584] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120216] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119790] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119301] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118638] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118188] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117771] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115265] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114819] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114080] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113092] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111275] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110530] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110090] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110001] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110646] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112134] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112849] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113282] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114014] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115134] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115520] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115832] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115911] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115734] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115546] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115476] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115622] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116144] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117232] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119163] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121844] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129331] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138733] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142950] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149725] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148397] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148353] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151273] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152738] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152956] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153252] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153704] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154339] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157001] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158304] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161973] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165018] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168180] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169654] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170588] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171215] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171867] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172794] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173248] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173280] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173414] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175568] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181119] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183673] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184649] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185699] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186039] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187338] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190039] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191569] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192347] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192735] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192575] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192250] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191866] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191525] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187963] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185880] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184061] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182705] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182431] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182980] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184239] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185689] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187119] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188667] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190357] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192247] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193488] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.242709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.248217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.253450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.258558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.266957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.270267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.273318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.276039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.278501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.281410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.293050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.297617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.302750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.308270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.314985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.322446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.332088] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.344935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.361085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.382977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.411435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.445093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.490465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.538899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.604569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.685196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.775781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.873375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.004606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.141923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.293533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.467561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.655402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.869377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.112587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.397968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.686598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.027475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.398125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.807936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.253925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.726723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.211641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.713192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.227192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.839350] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.407692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.079666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.748671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.470079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.256489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.109203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.979570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.916788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.813171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.877386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.881157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.103256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.318439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.536182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.819958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.119652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.503616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.949612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.379723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.007874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.578300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.291916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.038380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.895367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.738140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.615242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.604954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.614132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.676258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.760807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.874752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.266777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.449707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.932335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.413307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.765480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.461166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.835411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.546753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.958275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.748871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.281891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.998940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.750076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.488281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.372032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.240623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.134773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.000771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.202576] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.983955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.132538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.075981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.409637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.531235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.615494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.843185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.992233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.746506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.304230] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.868042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.390411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.533432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.012024] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.667892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.759232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.308441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.960999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.634415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.266174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.842987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.058746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.436310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.626587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.916855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.099014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.417831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.662354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.894577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.166977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.707565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.774078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.246063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.790985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.271637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.735657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.192184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.575439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.900665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.339539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.691147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.035828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.311340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.552338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.784821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.950500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.062531] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.229401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.300568] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.287384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.933746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.627045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.291992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.813843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.321716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.004272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.718811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.067505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.841431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.193085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.769318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.089630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.381866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.430969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.825409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.166351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.187134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.153381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.020355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.911621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.840302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.571075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.378204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.069794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.745880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.452057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.004791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.616882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.166595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.568695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.113403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.383820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.678986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.019592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.384094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.511597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.738892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.947723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.951691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.959412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.977783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.046600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.925537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.833862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.669281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.490082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.256226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.967957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.673492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.347382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.976288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.633057] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.193451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.730682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.285919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.807373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.257172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.675049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.198700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.647339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.008606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.348206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.666595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.983734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.266113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.538177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.790283] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.018280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.272247] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.474548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.686584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.872894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.057953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.233246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.391998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.553223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.708618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.829132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.960236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.071167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.193146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.308258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.421204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.518646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.631836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.750397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.859955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.989594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.117371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.277069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.460022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.657410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.845825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.064362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.299530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.588043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.901123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.252106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.612640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.976013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.447174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.984436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.522491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.090942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.665710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.233856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.849945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.528748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.332642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.161926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.036469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.806030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.699982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.599182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.679871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.618195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.736023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.722015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.830658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.973267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.106201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.377228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.710144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.981323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.467468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.025360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.611633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.052673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.663605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.128204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.906464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.738586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.402100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.384613] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.148224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.174835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.018616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.086487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.003418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.222565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.279724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.563019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.793915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.125092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.617767] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.792175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.080353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.570648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.983307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.468414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.835510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.486847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.269287] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.961395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.563446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.049408] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.978180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.113953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.205017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.843445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.875397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.008759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.739532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.934113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.590424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.615112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.291077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.199890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.222076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.039337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.242798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.173157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.122681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.087585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.397217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.765198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.605652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.901855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.000977] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.990784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.180481] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.103027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.453186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.810486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.631836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.953003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.819092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.886841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.632324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.901611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.691162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.881042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.682861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.774414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.737061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.641907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.846252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.538086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.502319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.103638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.947510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.503967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.428650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.008545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.754578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.347961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.057800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.132751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.038940] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.364441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.001953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.735352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.428223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.716003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.143372] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.780273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.976990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.143494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.563904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.963196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.000244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.437439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.790894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.060303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.295288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.194031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.471863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.716125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.913391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.056946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.153381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.093140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.711670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.479553] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.011169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.715637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.205750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.710693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.125366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.505127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.909485] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.709961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.076965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.417114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.736633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.995483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.221313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.404663] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.529236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.616333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.580078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.507874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.397156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.433899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.398682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.269226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.044983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.851013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.606384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.304443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.018921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.783264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.442139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.063660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.716248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.384399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.044739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.678650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.220642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.749756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.259033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.738098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.291260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.758972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.219788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.687866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.178162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.611267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.057373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.516724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.945557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.502380] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.963745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.414185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.845642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.293518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.745117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.188843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.144165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.592163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.064514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.586304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.126221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.675903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.269104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.804443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.347961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.914795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.502258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.105835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.720337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.385254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.078125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.716736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.385986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.177795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.011658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.836670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.582092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.467957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.377441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.320190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.285156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.291382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.203308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.248596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.381226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.523438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.632690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.836548] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.098572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.274353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.561707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.894958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.280701] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.737549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.310730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.727844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.314331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.746643] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.452454] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.115967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.793091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.343811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.172058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.076050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.755310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.514587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.433105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.553833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.721741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.828003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.864868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.955139] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.192017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.573364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.701965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.018616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.183411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.742981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.268555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.491760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.027405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.360535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.102539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.694031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.090149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.508301] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.274597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.809570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.323914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.913391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.556580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.114136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.539001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.370483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.117981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.280334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.441406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.435242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.088440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.855896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.550781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.658325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.752197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.409241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.034912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.684021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.344421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.068542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.849365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.742737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.391296] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.393799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.180847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.969238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.916077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.846924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.501526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.565063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.514648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.085693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.790344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.631714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.678955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.428467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.385132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.495789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.185425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.060730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.037842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.000488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.944519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.842224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.778076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.631592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.169617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.789124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.560486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.334961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.057800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.750000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.432129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.067017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.724609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.096436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.375793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.816223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.950256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.189758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.517517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.485596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.566101] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.602783] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.623535] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.533325] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.486511] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.313843] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.053711] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.883972] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.591248] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.445496] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.130493] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.948303] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.777161] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.432861] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.955933] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.590332] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.927124] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.474365] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.784302] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.126831] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.482544] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.745361] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.865845] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.803345] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.677734] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.437500] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.189209] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.816040] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.304688] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.694580] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.015015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.273926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.431274] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.465332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.375244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.162842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.828979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.361694] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.770874] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.052246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.185547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.161621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.031006] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.761841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.349121] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.819092] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.100708] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.232666] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.211304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.080444] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.717529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.335449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.819946] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.211365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.370728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.438416] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.322754] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.088135] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.612183] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.056580] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.765808] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.651794] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.989807] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.259460] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.251282] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.175842] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.013672] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.906189] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.641724] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.292053] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.826111] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.425476] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.097168] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.465820] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.958740] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.604248] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.208374] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.730774] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.329651] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.991333] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.118774] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.308716] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.715637] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.150146] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.820190] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.616455] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.446167] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.173584] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.227966] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.063416] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.692505] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.292969] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.251953] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.398743] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.787659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.483032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.486145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.817261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.488647] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.512878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.907166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.626099] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.613403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.879944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.492676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.464478] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.993286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.012756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.201843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.890625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.771912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.032227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.657288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.836731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.864136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.229370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.179382] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.458679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.968384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.506714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.268616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.919067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.517578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.781677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.004639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.994995] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.722107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.054565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.728821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.130554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.496094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.867188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.018677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.712036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.201172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.417725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.967041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.833496] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.495728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.011230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.975342] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.318359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.845215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.757935] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.691772] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.001587] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.704224] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.157349] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.806641] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.320313] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.990845] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.458740] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.481445] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.626343] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.486572] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.788330] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.481812] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.355835] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.302002] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.805420] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.396606] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.083008] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.304077] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.592163] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.062500] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.546021] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.014648] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.989014] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.004395] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.675415] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.994873] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.023804] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.544556] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.283447] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.701050] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.907593] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.438232] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.667236] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.549438] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.158813] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.067871] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.599121] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.074219] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.461792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.948364] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.534668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.654297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.648804] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.772339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.782471] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.050171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.045166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.956665] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.840576] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.375610] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.451660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.673828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.629395] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.137695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.621338] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.978638] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.163818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.950073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.464722] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.740356] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.849487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.725952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.113037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.410278] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.459839] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.257568] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.822266] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.104126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.743164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.676392] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.072876] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.173218] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.978027] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.493896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.942383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.140991] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.259521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.207886] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.834351] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.395752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.712158] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.073730] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.416016] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.477661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.388916] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.675049] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.211426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.971069] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.232910] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.287720] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.293091] [T/O: false ][Cruise: true ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.826904] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.834352] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.840830] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.845200] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.846384] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.844995] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.842478] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.840313] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.840179] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.842785] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.846888] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.851307] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.855148] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.858707] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861834] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864492] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866373] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867109] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867020] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866823] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867260] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.868790] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.871372] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.874809] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.878063] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881205] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883228] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883707] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883083] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881681] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881618] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883421] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.886597] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889832] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893358] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.897297] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.901175] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905310] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.909367] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.913422] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.916502] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.918039] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.918255] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.918903] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.919127] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.921278] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.925344] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.930983] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.937511] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.945066] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.953672] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.963409] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.974644] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.987524] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.001358] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.127224] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.016413] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.127224] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.033339] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.053305] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.077114] [T/O: false ][Cruise: false ] +[Elevator: 0.615719] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.107679] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.145082] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.191708] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.248854] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.320133] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.406996] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.511530] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.633322] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.773676] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.945742] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.144087] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.393606] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.699957] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.106087] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.600439] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.206415] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.901518] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.710606] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.713240] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.883295] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.219862] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.763182] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.377758] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.133240] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.146622] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.359974] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.649509] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.910789] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.060399] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.383621] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.216596] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.926617] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.580336] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.494732] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.606834] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.132065] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.597975] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.847588] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.589143] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.693527] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.450188] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.140336] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.377216] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.140336] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.250374] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.273026] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.356506] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.428352] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.066042] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.577103] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.900185] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.083543] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.334137] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.083543] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.944038] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.692459] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.328690] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.066042] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.126259] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.958534] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.951981] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.060399] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.021919] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.881653] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.903839] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.049429] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.943199] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.903442] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.169083] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.066042] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.511658] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.077619] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.984314] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.095643] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.193115] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.140336] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.448120] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.146987] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.714203] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.146987] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.085571] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.127224] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.460022] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.101813] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.838989] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.095093] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.477692] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.886429] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.295105] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.681381] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.120087] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.524384] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.941010] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.393280] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.832260] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.330963] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.688736] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.062988] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.290268] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.745651] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.401047] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.055496] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.994705] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.022018] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.047302] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.329865] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.746704] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.992249] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.155945] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.661530] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.239014] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.882965] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.616394] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.561829] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.585327] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.751678] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.037964] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.519379] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.137329] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.840210] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.821136] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.321625] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.933899] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.628052] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.273895] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.670135] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.687927] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.286560] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.435669] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.443756] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.884888] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.577209] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.869110] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.713898] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.085815] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.806366] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.612610] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.252991] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.332611] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.438812] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.596375] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.856506] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.872009] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.338013] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.599304] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.933533] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.332581] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.797485] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.122253] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.995361] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.066042] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.284912] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.095644] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.556274] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.101813] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.611816] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.120767] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.793762] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.934448] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: 0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.229004] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.776611] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.146987] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.905945] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.030579] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.387207] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.243774] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.377319] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.897949] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.063904] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.370422] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.972534] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.044739] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.938538] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.387146] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.236328] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.508057] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: 0.160469] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.757446] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.160469] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.030457] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.114377] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.684326] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.503113] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.037964] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.372498] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.530823] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.453491] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.305115] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.958984] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.384155] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.758057] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.074585] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.198486] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.347046] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.473206] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.575562] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.777832] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.020142] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.211609] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.528198] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.278442] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.664551] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.043579] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.978638] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.448914] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.428589] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.020203] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.999939] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.455627] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.079468] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.861084] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.764587] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.803223] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.668579] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.527100] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.410522] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.240723] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.244751] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.330688] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.934814] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.258545] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.559937] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.000366] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.537598] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.183960] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.896484] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.160469] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.880005] [T/O: false ][Cruise: false ] +[Elevator: -0.510867] [Roll: 0.238469] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.927246] [T/O: false ][Cruise: false ] +[Elevator: -0.502310] [Roll: 0.216596] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.156860] [T/O: false ][Cruise: false ] +[Elevator: -0.502310] [Roll: 0.216596] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.528076] [T/O: false ][Cruise: false ] +[Elevator: -0.476814] [Roll: 0.216596] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.045898] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.188113] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.816406] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.659424] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.559814] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.268799] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.553833] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.736938] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.550171] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.673096] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.546997] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.555908] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.950317] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.120767] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.662476] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.451588] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.199707] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.434924] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.151123] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.970459] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.760010] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.372681] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.550171] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.739136] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.268264] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.968994] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.291058] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.693359] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.283419] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.508911] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.253279] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.371094] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.834961] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.442383] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.471558] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.454712] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.209401] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.730103] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.066042] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.241333] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.809937] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.536621] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.697754] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.306456] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.472534] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.262573] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.987671] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.326538] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.306885] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.231131] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.227783] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.223840] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.038574] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.216596] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.834717] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.921265] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.749146] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.753662] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.108887] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.443604] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.572144] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.162842] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.705078] [T/O: false ][Cruise: false ] +[Elevator: -0.060399] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1543.335205] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.804077] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.555664] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.421753] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1575.424316] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.261719] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1592.150635] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.470947] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1609.491821] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.620850] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.442139] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1635.582520] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1644.819092] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1654.112549] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1662.475952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1671.650635] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1680.924561] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1689.205322] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1698.219727] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1706.503540] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1715.160767] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1724.188477] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1732.820679] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1740.762451] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -0.071784] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1748.802979] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1757.609009] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1765.534668] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1773.358276] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1781.295898] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1789.864014] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1798.418335] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1807.148560] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1815.252808] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1824.112793] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1832.083130] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1840.715454] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1848.741577] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1857.118774] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1865.703613] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1873.810303] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1881.608154] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1889.734253] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.195158] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1897.497803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1905.553223] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1913.821045] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1921.727783] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1929.550049] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1937.387207] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1945.377075] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1952.967285] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1960.419556] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1968.098755] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1975.801514] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1983.374512] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1990.868164] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1998.392822] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2005.795166] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2013.168457] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2019.616089] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2026.148315] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2032.643555] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2039.775269] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2046.892578] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2053.672119] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2060.628174] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2067.069824] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2073.785156] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2080.241943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2086.385010] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2092.832275] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2099.686035] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2106.375732] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2112.902100] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.202254] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2119.440430] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2125.938965] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2132.343018] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2138.678955] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2144.962158] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.174181] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2151.167725] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2157.304688] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2163.381592] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2169.387207] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2175.393555] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2181.462646] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2187.378662] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2193.128662] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2198.816650] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2204.477539] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2210.038330] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2215.542480] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2220.915527] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2226.229492] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2231.481689] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.033875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2236.578613] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.095643] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2241.514893] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2246.437744] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2250.768799] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2255.466064] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2260.180176] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.209401] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2264.784668] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2269.172363] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2273.474365] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2277.822510] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2282.118408] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2286.269287] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2290.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2294.180176] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2298.065186] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2301.513916] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2305.283447] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2308.698242] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2312.300293] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2316.023926] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2319.763672] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2323.509766] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2327.228027] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2330.968750] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2334.781982] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2338.239258] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2341.804932] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2345.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2349.858887] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2354.153564] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2358.480225] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2362.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2367.501953] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2372.204346] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2376.651855] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2381.588623] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2386.590576] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2391.811035] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2396.666992] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2402.034912] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2407.786621] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2413.616211] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2419.809570] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2426.097412] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2432.425293] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.120767] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2439.094727] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.108059] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2445.931396] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2453.150391] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2460.212891] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2467.044678] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2474.591797] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2482.130127] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2489.950928] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2497.617188] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2505.157715] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2512.740234] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2520.323486] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2528.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2537.556396] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.071784] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2545.939697] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.071784] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2554.957520] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2563.524658] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2572.081055] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2581.236816] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2590.294189] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2599.593262] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2608.712646] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2618.011719] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2627.211914] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.083543] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2636.776367] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2646.112061] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2655.341553] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2664.269287] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2673.389648] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.060399] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2681.422852] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.209401] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2689.437012] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.314215] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2697.863037] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.393828] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2706.517090] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.493781] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2715.000244] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.660524] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2723.328857] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.669560] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2731.653076] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.669560] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2739.770996] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.642527] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2747.448730] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.642527] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2754.881592] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.642527] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2762.754150] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.528067] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2770.323730] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.510867] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2777.683350] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.459966] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2784.649170] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2791.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.361554] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2798.462158] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2804.489258] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2811.152344] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2817.065918] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2823.330322] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2829.933350] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2836.041504] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2842.506348] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2848.936768] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2854.624512] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.377622] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2861.177002] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2867.069824] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2873.523682] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2879.988770] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2886.528809] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2893.228271] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.393828] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2899.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.401982] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2907.066895] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.410168] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2914.100586] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2922.332520] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2930.470947] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2938.593994] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2946.503662] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2955.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2963.595215] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2972.442139] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2981.648193] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2991.093750] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3000.949951] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.426640] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3010.995850] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.410168] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3021.339111] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.410168] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3031.808594] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3042.522949] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3054.107910] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.385708] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3065.899414] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.369570] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3077.579102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3090.216797] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.715102] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3102.640137] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.817334] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3115.826172] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.789183] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3129.090576] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.669560] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3142.665771] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.571557] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3156.629883] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.545380] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3170.803467] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.393828] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3185.289307] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.275821] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3200.018066] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3214.691650] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3229.545898] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3245.245117] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3260.613770] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3275.628418] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3291.664063] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3307.600830] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3323.452637] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3338.865967] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3354.976807] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3370.703125] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3387.042725] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3403.095215] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3419.022705] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3435.589111] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3452.097656] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3468.589111] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3485.725586] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3503.556641] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3520.310547] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3538.532715] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3555.814697] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3572.625000] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3589.855957] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3607.640381] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3624.549805] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3642.269531] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3659.322754] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3676.979004] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3694.735840] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3712.858398] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3736.610352] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3753.815430] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3770.804932] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3787.740234] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3804.939941] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3821.976563] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3839.412598] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3855.662354] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3872.242188] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3888.519287] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3905.402100] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3921.103271] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3936.513672] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3952.402588] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3968.168457] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3984.309814] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3999.905029] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4013.867432] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4027.435791] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4041.123047] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4054.026123] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4066.684570] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4079.470703] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4092.338135] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4104.064453] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4116.313965] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4127.348633] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4138.427734] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4148.999023] [T/O: false ][Cruise: false ] +[Elevator: -0.393828] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4159.945801] [T/O: false ][Cruise: false ] +[Elevator: -0.451588] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4169.779297] [T/O: false ][Cruise: false ] +[Elevator: -0.459966] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4179.612305] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4189.227539] [T/O: false ][Cruise: false ] +[Elevator: -0.485283] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4198.602051] [T/O: false ][Cruise: false ] +[Elevator: -0.493781] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4207.367676] [T/O: false ][Cruise: false ] +[Elevator: -0.493781] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4215.454102] [T/O: false ][Cruise: false ] +[Elevator: -0.493781] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4223.368164] [T/O: false ][Cruise: false ] +[Elevator: -0.493781] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4230.899414] [T/O: false ][Cruise: false ] +[Elevator: -0.493781] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4237.899902] [T/O: false ][Cruise: false ] +[Elevator: -0.485283] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4244.767578] [T/O: false ][Cruise: false ] +[Elevator: -0.485283] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4250.851074] [T/O: false ][Cruise: false ] +[Elevator: -0.476814] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4256.562500] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4261.938477] [T/O: false ][Cruise: false ] +[Elevator: -0.434924] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4266.617188] [T/O: false ][Cruise: false ] +[Elevator: -0.410168] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4270.656250] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4274.092773] [T/O: false ][Cruise: false ] +[Elevator: -0.361554] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4276.804688] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4278.896484] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4280.233398] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4280.828613] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4280.672363] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4279.791504] [T/O: false ][Cruise: false ] +[Elevator: -0.393828] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4277.993652] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4275.436523] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4272.396484] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4268.463379] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4264.164063] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4258.813477] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4253.236816] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4246.352051] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4238.703613] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4230.426758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4222.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4213.158691] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4203.547363] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4193.791992] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4184.596680] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4174.706543] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4164.360840] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4154.596191] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4144.762695] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4135.160645] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4126.008789] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4116.635254] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4107.078613] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4097.796387] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.060399] [Throttle:0.986842] [Flaps: 0.000000] [Data Ref: 4089.273682] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.939492] [Flaps: 0.000000] [Data Ref: 4080.897949] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.889964] [Flaps: 0.000000] [Data Ref: 4072.109375] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.841772] [Flaps: 0.000000] [Data Ref: 4063.672607] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.054859] [Throttle:0.794060] [Flaps: 0.000000] [Data Ref: 4055.491211] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.066042] [Throttle:0.746207] [Flaps: 0.000000] [Data Ref: 4047.771973] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.077619] [Throttle:0.698376] [Flaps: 0.000000] [Data Ref: 4039.615967] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.000981] [Yaw: 0.077619] [Throttle:0.647097] [Flaps: 0.000000] [Data Ref: 4031.794922] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.000981] [Yaw: 0.077619] [Throttle:0.600747] [Flaps: 0.000000] [Data Ref: 4024.509521] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.552978] [Flaps: 0.000000] [Data Ref: 4017.652832] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.066042] [Throttle:0.503709] [Flaps: 0.000000] [Data Ref: 4010.205566] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:0.452716] [Flaps: 0.000000] [Data Ref: 4003.802979] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.054859] [Yaw: 0.044116] [Throttle:0.405905] [Flaps: 0.000000] [Data Ref: 3997.410156] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.120767] [Yaw: 0.038928] [Throttle:0.355702] [Flaps: 0.000000] [Data Ref: 3991.554688] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: -0.238468] [Yaw: 0.038928] [Throttle:0.307215] [Flaps: 0.000000] [Data Ref: 3985.627930] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.253279] [Yaw: 0.038928] [Throttle:0.255933] [Flaps: 0.000000] [Data Ref: 3980.082031] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.231131] [Yaw: 0.038928] [Throttle:0.205667] [Flaps: 0.000000] [Data Ref: 3975.094238] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.223840] [Yaw: 0.038928] [Throttle:0.156841] [Flaps: 0.000000] [Data Ref: 3970.469482] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.209401] [Yaw: 0.038928] [Throttle:0.109916] [Flaps: 0.000000] [Data Ref: 3966.063232] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.209401] [Yaw: 0.038928] [Throttle:0.056861] [Flaps: 0.000000] [Data Ref: 3961.576660] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.133748] [Yaw: 0.038928] [Throttle:0.003824] [Flaps: 0.000000] [Data Ref: 3957.616943] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.120767] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3954.066406] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.089552] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3950.789551] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.003875] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3947.908203] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.011174] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3945.211426] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.019659] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3942.720947] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3940.107910] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3937.765869] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3935.534180] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3933.268799] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.024224] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3930.914551] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.024224] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3928.832520] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.024224] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3926.522949] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.038928] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3924.039307] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.066042] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3921.834473] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.066042] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3919.512939] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.089552] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3916.960449] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.095643] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3914.634277] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.101813] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3912.223633] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.133748] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3909.762695] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.133748] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3907.123047] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.108059] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3904.474854] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.000981] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3901.775146] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.003875] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3899.003662] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3896.012939] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3893.091553] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3890.208984] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3887.304688] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3884.382324] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3881.429932] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3878.159912] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3875.309082] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3872.166992] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3869.126465] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3866.230469] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3863.216064] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3860.186279] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3857.274170] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3854.265137] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3851.038818] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3847.888672] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3844.885498] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.000981] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3841.408203] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.000981] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3838.491455] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.000981] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3835.538574] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3832.562012] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.015298] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3829.520264] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.019659] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3826.479248] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.060399] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3823.396484] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.231131] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3820.260010] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.231131] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3817.190918] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.231131] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3814.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.231131] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3810.900146] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.195158] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3807.483154] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3804.043701] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.120767] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3800.629639] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.133748] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3797.075439] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.140336] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3793.649414] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.238468] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3790.048828] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.306456] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3786.691406] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.314215] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3783.257813] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.314215] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3779.621094] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.306456] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3776.022705] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.298737] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3772.524414] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.283419] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3769.012207] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3765.469727] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3761.633301] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3758.117920] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3754.432373] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3750.572998] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.260750] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3747.104980] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.089552] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3743.568115] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.028969] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3739.605225] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.038928] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3736.177979] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.083543] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3732.651855] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.153698] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3728.702393] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.153698] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3724.770508] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.153698] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3721.206787] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.146987] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3717.456543] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.011174] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3713.746582] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3710.205566] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3706.671631] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3703.150146] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3699.130371] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3695.066406] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3690.975586] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3686.749512] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3682.430420] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.060399] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3678.438477] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3673.893311] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.044116] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3669.755859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.038928] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3665.489746] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3660.692627] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.011174] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3655.823730] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3650.791260] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3645.547607] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3640.571777] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3635.522217] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3630.406982] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3625.433105] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3620.597656] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3616.471680] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3612.578125] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3608.777588] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3604.955811] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3601.498291] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.015298] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3598.135254] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.077619] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3595.098877] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3592.396973] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3590.092529] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3587.786621] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3585.522461] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.108059] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3583.340088] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3581.448242] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.095643] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3579.372559] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.120767] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3577.480469] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3575.603516] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3573.730713] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3571.815674] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3569.914551] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3567.831787] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3565.795654] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.114377] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3563.688232] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3561.593506] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.054859] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3559.545898] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3557.500977] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.095643] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3555.448975] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.101813] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3553.383789] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.108059] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3551.296631] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.114377] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3549.171631] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.114377] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3547.212402] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.114377] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3545.073975] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.108059] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3542.730957] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.083543] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3540.323486] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3537.806152] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3535.150391] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.077619] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3532.393555] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.077619] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3529.626465] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.071784] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3526.919434] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.071784] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3523.883057] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3520.651855] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.054859] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3517.373779] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.054859] [Yaw: -0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3514.015625] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.049429] [Yaw: -0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3510.518066] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.049429] [Yaw: -0.401982] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3506.947754] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.049429] [Yaw: -0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3503.295654] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.049429] [Yaw: -0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3499.463867] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: -0.133748] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3495.581543] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: 0.133748] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3491.498535] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: 0.410169] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3487.265137] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: 0.571557] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3482.969482] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: 0.589143] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3478.343262] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.015298] [Yaw: 0.589143] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3473.654541] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.033876] [Yaw: 0.545380] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3468.955566] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.054859] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3464.168457] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.060399] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3458.964111] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.054859] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3453.425293] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.054859] [Yaw: 0.181120] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3447.792969] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.024224] [Yaw: 0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3441.995850] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.077619] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3435.949707] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.095643] [Yaw: -0.153698] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3429.914063] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.101813] [Yaw: -0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3423.680908] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.101813] [Yaw: -0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3417.326416] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.101813] [Yaw: -0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3410.903564] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.101813] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3404.452637] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.101813] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3397.953613] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.101813] [Yaw: -0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3391.197510] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.101813] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3384.427246] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.101813] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3377.447998] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.101813] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3370.142334] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.101813] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3362.609619] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.101813] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3354.742432] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.077619] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3346.681396] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.044116] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3338.264648] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.024224] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3329.419189] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3320.588135] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.011174] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3311.505127] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.011174] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3301.932373] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3292.501465] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3282.993408] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3273.422852] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3263.934814] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3254.457520] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3245.235596] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3236.265625] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3227.430176] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3219.469482] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3210.873535] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3202.742432] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3195.001465] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3187.628662] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3180.787354] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3174.235840] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3167.896973] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3161.899658] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3156.032471] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3150.370117] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3145.000732] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3139.993164] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3135.080322] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3130.888672] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3126.497559] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3122.286377] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3118.290283] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3114.557617] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3110.948730] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3107.604492] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3104.478027] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3101.819336] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3099.102539] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3096.532959] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3094.093018] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3091.986084] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3090.079102] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3088.302979] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3086.833252] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3085.583740] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3084.524902] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3083.699707] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3083.043701] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.604004] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.346436] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.284912] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.417725] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.748291] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3083.265381] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3083.987549] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3084.863037] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3085.919678] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3087.168213] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3088.607910] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3090.192139] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3091.865479] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3093.598633] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3095.399170] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3097.279053] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3099.247803] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3101.248535] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3103.317139] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3105.360840] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3107.434814] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3109.500732] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3111.646240] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.594238] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3115.677979] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3117.813477] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3119.953369] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3122.093750] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3124.272217] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3126.482178] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3128.637939] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3130.925049] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3133.186523] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3135.396729] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3137.601074] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3139.783203] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3141.999268] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3144.215820] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3146.383789] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3148.615479] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3150.798096] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3152.982666] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3155.140625] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3157.299072] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3159.453613] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.007337] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3161.612305] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.007337] [Yaw: -0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3163.769531] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.007337] [Yaw: -0.153698] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3165.875244] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.007337] [Yaw: -0.127224] [Throttle:0.014478] [Flaps: 0.000000] [Data Ref: 3167.976318] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.007337] [Yaw: -0.114377] [Throttle:0.064563] [Flaps: 0.000000] [Data Ref: 3170.089844] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.007337] [Yaw: -0.120767] [Throttle:0.115852] [Flaps: 0.000000] [Data Ref: 3172.201172] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.007337] [Yaw: -0.127224] [Throttle:0.165605] [Flaps: 0.000000] [Data Ref: 3174.295898] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.011174] [Yaw: -0.127224] [Throttle:0.216254] [Flaps: 0.000000] [Data Ref: 3176.353760] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.011174] [Yaw: -0.120767] [Throttle:0.265705] [Flaps: 0.000000] [Data Ref: 3178.445801] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.011174] [Yaw: -0.120767] [Throttle:0.316049] [Flaps: 0.000000] [Data Ref: 3180.525146] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.011174] [Yaw: -0.120767] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3182.641357] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.011174] [Yaw: -0.120767] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3184.796631] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.011174] [Yaw: -0.120767] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3186.954346] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.003875] [Yaw: -0.120767] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3189.210449] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.000981] [Yaw: -0.120767] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3191.463867] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.000981] [Yaw: -0.114377] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3193.761475] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.000981] [Yaw: -0.114377] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3196.088623] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.089552] [Yaw: -0.114377] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3198.380615] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.167297] [Yaw: -0.114377] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3200.596924] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.238468] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3202.765381] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3204.771484] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3206.740234] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3208.555176] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3210.257080] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.268264] [Yaw: -0.108059] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3211.807861] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.095643] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.288086] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.612305] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.260750] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.820801] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.854004] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3217.744629] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.260750] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3218.547363] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.260750] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3219.218506] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.260750] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3219.798340] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.260750] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.274414] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.253279] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.656982] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.253279] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.937500] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.231131] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3221.111816] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.231131] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3221.172607] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3221.121094] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.950439] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.681885] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3220.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3219.836426] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3219.298584] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3218.687256] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3218.040527] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3217.428467] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.198242] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.640381] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.131104] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.674805] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.292480] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.982178] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.748535] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.600342] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.518066] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.510498] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.574951] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.707275] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.898193] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.143066] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.202254] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.718018] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.039307] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.364258] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.174181] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.685303] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.223840] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.989746] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.231131] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.272461] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.238469] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.516357] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.329846] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.706543] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.377622] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.835205] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.401982] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.886963] [T/O: false ][Cruise: false ] +[Elevator: -0.060399] [Roll: 0.401982] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.859375] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.401982] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.745361] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.410169] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.540771] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.434925] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3216.228027] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.792725] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3215.235596] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3214.564453] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3213.731445] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3212.770752] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3211.643799] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3210.385986] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3208.942627] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3207.408936] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3205.689453] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3203.893555] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3201.925781] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.476814] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3199.845215] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3197.631592] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3195.313965] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3192.837646] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3190.260010] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3187.574951] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3184.702393] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3181.727539] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3178.571777] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3175.350342] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3171.901855] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.493782] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3168.311279] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3164.522461] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3160.621338] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3156.616211] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3152.426025] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3148.136475] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.459966] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3143.661621] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3139.087158] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.101813] [Yaw: -0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3134.294434] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.459966] [Yaw: -0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3129.269287] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.028969] [Yaw: -0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3124.196289] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3119.130615] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.054859] [Yaw: -0.024224] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3113.891602] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.401982] [Yaw: -0.019659] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3108.679443] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.377622] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3103.253662] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.146987] [Yaw: 0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3097.919189] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.054859] [Yaw: 0.015298] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3092.544434] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.049429] [Yaw: 0.015298] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3087.199951] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.049429] [Yaw: 0.015298] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3081.976074] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3076.724121] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3071.833740] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3066.989014] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3062.312256] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3057.774902] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3053.409424] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3049.172607] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3044.950684] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3040.920410] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3036.999756] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3033.296387] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3029.747070] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3026.309814] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.044116] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3023.188477] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3020.233398] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3017.465820] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3014.978516] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3012.736328] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3010.762695] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3009.125000] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3007.777344] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3006.709717] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3005.919189] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3005.404785] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3005.141113] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.337326] [Flaps: 0.000000] [Data Ref: 3005.152344] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: -0.077619] [Throttle:0.317628] [Flaps: 0.000000] [Data Ref: 3005.434570] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.297587] [Flaps: 0.000000] [Data Ref: 3005.990967] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: -0.195158] [Throttle:0.290958] [Flaps: 0.000000] [Data Ref: 3006.820068] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.243902] [Flaps: 0.000000] [Data Ref: 3007.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.197592] [Flaps: 0.000000] [Data Ref: 3009.300537] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.150685] [Flaps: 0.000000] [Data Ref: 3010.976318] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.103604] [Flaps: 0.000000] [Data Ref: 3012.900391] [T/O: false ][Cruise: false ] +[Elevator: -0.459966] [Roll: -0.089552] [Yaw: 0.028969] [Throttle:0.057257] [Flaps: 0.000000] [Data Ref: 3015.138184] [T/O: false ][Cruise: false ] +[Elevator: -0.459966] [Roll: -0.089552] [Yaw: 0.028969] [Throttle:0.010671] [Flaps: 0.000000] [Data Ref: 3017.461182] [T/O: false ][Cruise: false ] +[Elevator: -0.361554] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3020.265137] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.089552] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3023.341553] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: -0.209401] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3026.641602] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: -0.209401] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3030.176758] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.223840] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3033.864502] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.223840] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3037.712891] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.202254] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3041.615723] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -0.188113] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3045.553711] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.209401] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3049.456787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3053.291748] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.216596] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3057.029785] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.275820] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3060.629395] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.291058] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3064.095703] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.291058] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3067.380371] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.291058] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3070.723877] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.253279] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3073.834717] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: -0.245851] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3076.836182] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.245851] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3079.625244] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.238468] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3082.501709] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.238468] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3085.401855] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: -0.209401] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3088.231201] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: -0.181120] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3091.093506] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3093.875732] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3096.521973] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.127224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3099.197266] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3101.723145] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3104.098145] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3106.328369] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.019659] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3108.297852] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3110.045654] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3111.488281] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3112.605713] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.392822] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.830566] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.907471] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.634033] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3113.001465] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3111.979980] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3110.632568] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3108.983398] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3106.981934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3104.670410] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3101.944824] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3098.948242] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3095.681885] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3092.031250] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3088.217285] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3084.194824] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3079.989502] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.015298] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3075.743408] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3071.501953] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3067.205078] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3062.973145] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3058.797852] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.024224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3054.681885] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3050.772217] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: -0.033875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3047.163330] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3043.349365] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.223840] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3039.529053] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.260750] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3035.871582] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.260750] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3032.321533] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.238468] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3028.812500] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.133748] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3025.371094] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.044116] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3021.851807] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3018.309082] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3014.744629] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3011.056396] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3007.256348] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.101813] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3003.463379] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.120767] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2999.455078] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2995.321533] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2991.053711] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2986.583984] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2981.925781] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2977.269287] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2972.334229] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2967.204834] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2961.864502] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.024224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2956.370605] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: -0.024224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2950.816406] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2945.036865] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2939.174316] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2932.948486] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2926.550781] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2919.929443] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2913.312744] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2906.473389] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2899.820801] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2892.821045] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2885.468262] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2877.890869] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2870.070068] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2862.299561] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2854.322998] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2846.174072] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2838.059326] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2830.036865] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2822.182861] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2814.400635] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2806.727539] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2798.929932] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2791.363770] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2783.852783] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2776.347168] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2769.065430] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2761.677002] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2754.237305] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2746.959717] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2739.971436] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2732.978271] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718320] [Data Ref: 2726.099854] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718321] [Data Ref: 2719.347412] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.718321] [Data Ref: 2712.626221] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2705.501953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2698.609131] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2691.567871] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2684.661133] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2677.852539] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2671.259033] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2664.594238] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2658.094482] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2651.673828] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2645.338867] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2639.072510] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2632.934814] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2626.867432] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2620.819336] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2614.838135] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2608.773926] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2602.654541] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2596.557617] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2590.350342] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2584.099121] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.015298] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2577.801758] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.015298] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2571.501465] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2565.236328] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2559.134277] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2552.979492] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2546.994141] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2541.211182] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2535.469482] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2530.350098] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2524.856201] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2519.509521] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: -0.314215] [Throttle:0.014942] [Flaps: 0.744752] [Data Ref: 2514.250000] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.015298] [Yaw: -0.108059] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2509.104980] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: -0.038928] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2504.032959] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2498.976807] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2494.117188] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2489.284912] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2484.482422] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2479.682861] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2474.970703] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2470.184570] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2465.425293] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2460.768066] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2456.246094] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2452.175537] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2447.761230] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2443.521973] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2439.209961] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2435.428711] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2432.002930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.044116] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2428.867188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.044116] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2426.187988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.054859] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2423.905518] [T/O: false ][Cruise: false ] +[Elevator: -0.633565] [Roll: 0.140336] [Yaw: -0.044116] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2422.072998] [T/O: false ][Cruise: false ] +[Elevator: -0.606834] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2420.676514] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.011174] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2419.755615] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.011174] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2419.268066] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.011174] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2419.185059] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: 0.146987] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2419.457031] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.268264] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2420.004395] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.260750] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2420.704834] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.202254] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2421.363281] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.049429] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2421.802979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2421.888672] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2421.518555] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.024224] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2420.618652] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2419.176758] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.007337] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2417.265137] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.024224] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2414.912598] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.038928] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2412.201660] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.066042] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2409.160645] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.071784] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2406.020020] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.071784] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2402.718262] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.066042] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2399.433105] [T/O: false ][Cruise: false ] +[Elevator: -0.361554] [Roll: -0.066042] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2396.235840] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.066042] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2393.229248] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.007337] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2390.415039] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2387.787109] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.066042] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2385.294922] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.146987] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2382.892334] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.146987] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2380.684326] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.174181] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2378.552734] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.167297] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2376.411133] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.167297] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2374.270508] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.167297] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2372.158691] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.167297] [Yaw: -0.028969] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2369.965576] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.174181] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2367.827148] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.195158] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2365.654785] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.195158] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2363.504150] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.195158] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2361.408936] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.195158] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2359.439209] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.188113] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2357.596924] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2355.932861] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2354.485840] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2353.275635] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2352.339600] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2351.711426] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2351.392578] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2351.394043] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.140336] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2351.716064] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.060399] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2352.361084] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2353.347656] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.049429] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2354.668213] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.060399] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2356.339111] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: 0.140336] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2358.322510] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.146987] [Yaw: -0.033875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2360.456787] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.140336] [Yaw: -0.049429] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2363.087158] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.060399] [Yaw: -0.528067] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2365.972900] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: -1.000000] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2369.154541] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: -1.000000] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2372.501465] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2376.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2379.771484] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2383.730469] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2387.752197] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2391.932861] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2396.318604] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2400.919434] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2405.607422] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2410.338135] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2415.300537] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2420.387939] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2425.592041] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2430.858154] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2435.679443] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2440.749512] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2445.958984] [T/O: false ][Cruise: false ] +[Elevator: -0.660524] [Roll: 0.033876] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2451.385742] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.060399] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2456.889160] [T/O: false ][Cruise: false ] +[Elevator: -0.761232] [Roll: 0.160469] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2462.530029] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2468.367188] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.095644] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2474.394775] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.377622] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2480.676758] [T/O: false ][Cruise: false ] +[Elevator: -0.476814] [Roll: 0.401982] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2487.029541] [T/O: false ][Cruise: false ] +[Elevator: -0.298737] [Roll: 0.393828] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2493.766357] [T/O: false ][Cruise: false ] +[Elevator: -0.291058] [Roll: 0.393828] [Yaw: 0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2500.497070] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.329846] [Yaw: 0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2506.901367] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.216596] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2513.326416] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.223840] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2520.030518] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.223840] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2526.506348] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.223840] [Yaw: -0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2532.864258] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.238469] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2538.841064] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.238469] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2544.378418] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.238469] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2549.876953] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.202254] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2554.993896] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.146987] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2559.606445] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.127224] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2563.889160] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.223840] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2567.793945] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.231131] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2571.083008] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.216596] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2574.313477] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.202254] [Yaw: -0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2577.078369] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.181120] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2579.849609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.167297] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2582.406738] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.174181] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2584.788574] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.283419] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2586.942627] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.268264] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2589.000977] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.174181] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2590.877930] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.140336] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2592.633789] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.108059] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2594.477295] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.108059] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2596.151855] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.146987] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2597.930176] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.160469] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2599.645264] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.153698] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2601.386230] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.153698] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2603.317627] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.153698] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2605.358643] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: -0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2607.439453] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2609.636475] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2611.879150] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2614.216064] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2616.594482] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2618.884766] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2621.333496] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2623.767334] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.060399] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2626.313477] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.101813] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2628.665283] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2631.331543] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2634.081055] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2636.805908] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2639.739258] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2642.756836] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.140336] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2645.991943] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2649.240479] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2652.490479] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2655.752197] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2659.123779] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2662.554932] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2666.046631] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2669.648682] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2673.251221] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2677.449707] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2681.412109] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2685.717041] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2689.882324] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2694.388916] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.028969] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2698.830078] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2703.540527] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2708.224365] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2712.881836] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2718.107910] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2723.187256] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.160469] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2728.576172] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.174181] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2733.886963] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.195158] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2739.085449] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.202254] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2744.878906] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.195158] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2750.343750] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.188113] [Yaw: -0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2755.803467] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.127224] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2761.467285] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2767.220947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2773.198730] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2779.227051] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2784.848633] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2790.642578] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2796.936035] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2803.327637] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2809.323730] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2815.192383] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2821.574219] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2827.906250] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.060399] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2833.839355] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.060399] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2840.193115] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2845.993896] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2852.353027] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.101813] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2858.409912] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2864.556885] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2870.287354] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2877.097656] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2884.054932] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2889.659912] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2895.010010] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2900.263184] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.120767] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2905.871338] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.188113] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2911.592041] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2917.314209] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2923.107178] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2928.843018] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2934.639648] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2940.269043] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2945.938477] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2951.563965] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2957.149170] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2962.595703] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2968.227295] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2973.333252] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.202254] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2978.712891] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.060399] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2983.717529] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2988.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2993.790527] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.028969] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2998.760986] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.108059] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3003.637207] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.095644] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3008.440186] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.083543] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3013.379883] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3018.440918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3023.346191] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3027.820068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3032.172607] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3036.670898] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3040.647461] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3044.698730] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3048.696289] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3052.585449] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3056.478760] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.127224] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3060.512451] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3064.619141] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3068.499268] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3072.255371] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3075.834961] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3078.932617] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3081.992432] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3085.134277] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3088.006348] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3090.753906] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3093.342773] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3095.914551] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3098.211670] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3100.583740] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3102.828613] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3104.941895] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3106.920898] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3108.792480] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3110.509521] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3112.106934] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3113.418945] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3114.754150] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3115.919922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3116.975830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3117.886963] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3118.674561] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3119.329102] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3119.876221] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.282227] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.610840] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.820801] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.922607] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.925049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.825195] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.633301] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3120.357910] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3119.989502] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3119.533203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3118.896729] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3118.260254] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3117.543457] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3116.756836] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3115.860352] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3114.871338] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3113.803955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3112.648193] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3111.421631] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3110.119385] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3108.763184] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3107.365479] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3105.787842] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3104.161621] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3102.467529] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3100.769775] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3098.963867] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3097.047607] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3095.000000] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3092.893311] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3090.702393] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3088.453613] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3086.132568] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3083.693115] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3081.568604] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3079.027832] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3076.413330] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3073.720947] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3070.942383] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3068.061523] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3065.063477] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3061.904785] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3058.768555] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3055.493896] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3052.073242] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3048.622559] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3044.953369] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3041.244141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3037.520752] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3033.688965] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3029.825439] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3025.909668] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3021.833252] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3017.660156] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3013.260498] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3008.788086] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 3004.257568] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2999.540039] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2995.178223] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2990.452637] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2986.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2981.270508] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2976.515137] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2971.704346] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2967.388916] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2962.430176] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2957.975098] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2952.950439] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2947.939453] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2942.921143] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2937.746338] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2932.577881] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.051635] [Flaps: 0.744752] [Data Ref: 2927.491211] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: -0.083543] [Throttle:0.036290] [Flaps: 0.744752] [Data Ref: 2922.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.007337] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2917.363770] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2912.406006] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2907.367920] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2902.428467] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2897.426270] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2892.496094] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2888.038330] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2883.112061] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2878.070801] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2873.038818] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2868.001465] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2863.011719] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2857.991211] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.209401] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2853.014648] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2848.110352] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2843.188721] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2838.294434] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2833.494629] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2828.754150] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.066042] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2824.010742] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2819.712402] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2815.239746] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2810.481445] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2805.897217] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2801.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2796.500488] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2791.796387] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2787.099121] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.083543] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2782.196533] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2777.480957] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2772.915527] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2768.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2763.867920] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2759.490234] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.095644] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2755.010742] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2750.721191] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2746.184082] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2741.743408] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: -0.133748] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 2737.331055] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: -0.291058] [Throttle:0.022156] [Flaps: 0.744752] [Data Ref: 2732.946533] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.022156] [Flaps: 0.744752] [Data Ref: 2728.609375] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.015298] [Yaw: 0.015298] [Throttle:0.022156] [Flaps: 0.744752] [Data Ref: 2724.204834] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:0.067096] [Flaps: 0.744752] [Data Ref: 2719.776123] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.067096] [Flaps: 0.744752] [Data Ref: 2715.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.238469] [Throttle:0.081659] [Flaps: 0.744752] [Data Ref: 2710.953125] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.104319] [Flaps: 0.744752] [Data Ref: 2706.569580] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.245851] [Yaw: 0.024224] [Throttle:0.104319] [Flaps: 0.744752] [Data Ref: 2702.178711] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.216596] [Yaw: 0.114377] [Throttle:0.104319] [Flaps: 0.744752] [Data Ref: 2697.792236] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.054859] [Yaw: 0.108059] [Throttle:0.104319] [Flaps: 0.744752] [Data Ref: 2693.412354] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.024224] [Yaw: 0.024224] [Throttle:0.104319] [Flaps: 0.744752] [Data Ref: 2689.145752] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.024224] [Yaw: 0.101813] [Throttle:0.127168] [Flaps: 0.744752] [Data Ref: 2684.779053] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2680.451660] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2676.220459] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2671.905518] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2667.552979] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2663.347168] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2658.992920] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2654.638184] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2650.259277] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2645.858398] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2641.459961] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2637.030029] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2632.672852] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2628.163818] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2623.660645] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2619.130371] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2614.621582] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2610.045898] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2605.570801] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2601.143555] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2596.299805] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2591.545898] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2586.618408] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2581.557373] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2576.667236] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2571.869873] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2566.998535] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2562.110596] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2557.163818] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2552.194336] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2547.125977] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2542.042236] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2536.944092] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2531.743652] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2526.416992] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2521.155518] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2515.931152] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2510.679932] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.188113] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2505.402100] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.188113] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2500.114014] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2494.834961] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2489.657959] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2484.612305] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2479.325684] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.140336] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2474.044678] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.044116] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2468.697510] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.019659] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2463.361328] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2458.089355] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2452.792236] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.174181] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2447.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2442.231445] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2436.984619] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2431.841553] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.181120] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2426.742676] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.181120] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2421.687500] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.146987] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2416.628174] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.120767] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2411.702637] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.209401] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2406.839111] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2402.024658] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2397.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.007337] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2392.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2387.763916] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2383.063477] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2378.468506] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2373.847168] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.148793] [Flaps: 0.744752] [Data Ref: 2369.157959] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: 0.066042] [Throttle:0.172477] [Flaps: 0.744752] [Data Ref: 2364.440186] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.101813] [Throttle:0.225846] [Flaps: 0.744752] [Data Ref: 2359.854980] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2355.279785] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2350.747803] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2346.216553] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2341.772217] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2337.713623] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2333.325439] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2328.960693] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2324.689209] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2320.466064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2316.340576] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2312.268555] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2308.206543] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2304.181885] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.077619] [Yaw: 0.000981] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2300.288330] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.049429] [Yaw: -0.033875] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2296.387451] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2292.572266] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.202254] [Yaw: -0.044116] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2288.765625] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.140336] [Yaw: -0.044116] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2285.088867] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.231131] [Yaw: -0.049429] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2281.575439] [T/O: false ][Cruise: false ] +[Elevator: -0.410168] [Roll: -0.275820] [Yaw: -0.049429] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2278.245605] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: -0.049429] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2274.646729] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: -0.049429] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2271.048340] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.049429] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2267.430908] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.066042] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2264.162598] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2260.564697] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2256.899170] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.000981] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2253.173828] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2249.551758] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.000981] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2245.858398] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.060399] [Yaw: -0.060399] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2242.174316] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.153698] [Yaw: -0.044116] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2238.130859] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.153698] [Yaw: -0.038928] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2234.010498] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.153698] [Yaw: -0.038928] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2229.882324] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.038928] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2225.711670] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.083543] [Yaw: -0.028969] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2221.627686] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2217.604736] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2213.636230] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.054859] [Yaw: -0.024224] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2209.701172] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.054859] [Yaw: -0.028969] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2205.806885] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.054859] [Yaw: -0.033875] [Throttle:0.241057] [Flaps: 0.744752] [Data Ref: 2201.962158] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: -0.410168] [Throttle:0.233088] [Flaps: 0.744752] [Data Ref: 2198.041016] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: -0.401982] [Throttle:0.192265] [Flaps: 0.744752] [Data Ref: 2194.245605] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.192265] [Flaps: 0.744752] [Data Ref: 2190.578125] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: -0.418388] [Throttle:0.168117] [Flaps: 0.744752] [Data Ref: 2187.257324] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: -0.418388] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2183.864258] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2180.539795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2177.369385] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2174.208984] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2171.111816] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2168.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2165.130127] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2162.324951] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2159.596436] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2156.937988] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2154.370605] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2152.064697] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2149.662842] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2147.351807] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2145.171387] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2143.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2141.019287] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2139.139160] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2137.378418] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2135.695557] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2134.101563] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2132.615723] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2131.237305] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2129.916504] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2128.729248] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2127.644775] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2126.663086] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2125.763184] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2124.954590] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2124.239258] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2123.611084] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2123.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.028969] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2122.633301] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2122.280273] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2122.012451] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.814697] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.677979] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.584473] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.044116] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.519775] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.471191] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.424561] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.365723] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.282471] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.168457] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2121.017822] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2120.825439] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2120.591309] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2120.314209] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2119.990723] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2119.637451] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2119.251953] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2118.835205] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2118.396484] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2117.930176] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2117.442139] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2116.921631] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2116.352539] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.015298] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2115.789063] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.015298] [Yaw: -0.038928] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2115.132324] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: -0.038928] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2114.413086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.044116] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2113.617188] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2112.749268] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2111.784424] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2110.756348] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2109.632080] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2108.420410] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2107.192627] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2105.776855] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2104.269287] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2102.659668] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2100.960938] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2099.221924] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2097.371094] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2095.480225] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2093.556641] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2091.611328] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2089.613037] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2087.604248] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2085.449463] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2083.504150] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2081.518066] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2079.414063] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2077.313477] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2075.221680] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2073.160889] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2071.070313] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2068.981934] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2066.935547] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2064.932617] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2062.933350] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2060.934082] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2058.918213] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2056.874023] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2054.810059] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.322011] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2052.799805] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2050.793457] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2048.101563] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2046.032104] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2043.930054] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2041.888672] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2039.871948] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2037.857544] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2035.847412] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2033.850098] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.268264] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2031.814453] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2029.866089] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2027.937866] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2026.017090] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2024.092285] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2022.152344] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2020.339844] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2018.514038] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2016.738403] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2015.066528] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2013.441162] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2011.860352] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2010.360962] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2008.954468] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2007.632935] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2006.418213] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2005.283447] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2004.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2003.255981] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2002.362305] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2001.545532] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2000.785034] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 2000.079346] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1999.438354] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1998.822388] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1998.265259] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1997.746460] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1997.288086] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1996.866943] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1996.449585] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1996.089111] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1995.743652] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1995.414673] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1995.106323] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1994.813232] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1994.528931] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1994.253296] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1993.982422] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.125213] [Flaps: 0.744752] [Data Ref: 1993.721191] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.109858] [Flaps: 0.744752] [Data Ref: 1993.464600] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.086551] [Flaps: 0.744752] [Data Ref: 1993.205688] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.060399] [Throttle:0.062987] [Flaps: 0.744752] [Data Ref: 1992.948364] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.039773] [Flaps: 0.744752] [Data Ref: 1992.692871] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.008568] [Flaps: 0.744752] [Data Ref: 1992.435425] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1992.173950] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1991.913208] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1991.643188] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1991.365845] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1991.100220] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1990.801514] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1990.490234] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1990.164795] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1989.827759] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1989.474609] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1989.110107] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1988.729858] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1988.327637] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1987.908813] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.011174] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 1987.468506] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.101813] [Throttle:0.038110] [Flaps: 0.744752] [Data Ref: 1987.000854] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.015298] [Yaw: 0.071784] [Throttle:0.091396] [Flaps: 0.744752] [Data Ref: 1986.500122] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.015298] [Yaw: 0.044116] [Throttle:0.144972] [Flaps: 0.744752] [Data Ref: 1985.960693] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1985.368164] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1984.716064] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1984.003296] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1983.223267] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1982.358643] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1981.439575] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1980.358154] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1979.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1978.005127] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1976.681152] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1975.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1973.658447] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1972.000488] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1970.263672] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1968.428223] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1966.495728] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1964.514282] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1962.516235] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1960.517822] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1958.518433] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1956.319458] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1954.166504] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1951.956665] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1949.685913] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1947.361938] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1945.005371] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1942.642090] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1940.213623] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1937.726440] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1935.307617] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.049429] [Yaw: -0.011174] [Throttle:0.175455] [Flaps: 0.744752] [Data Ref: 1932.673340] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.044116] [Yaw: -0.019659] [Throttle:0.189432] [Flaps: 0.744752] [Data Ref: 1930.183105] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.044116] [Yaw: -0.024224] [Throttle:0.242597] [Flaps: 0.744752] [Data Ref: 1927.659668] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.044116] [Yaw: -0.024224] [Throttle:0.293746] [Flaps: 0.744752] [Data Ref: 1925.011353] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: -0.033875] [Throttle:0.344557] [Flaps: 0.744752] [Data Ref: 1922.289185] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.049429] [Yaw: 0.011174] [Throttle:0.344557] [Flaps: 0.744752] [Data Ref: 1919.545044] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.054859] [Yaw: 0.015298] [Throttle:0.344557] [Flaps: 0.744752] [Data Ref: 1916.838745] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.049429] [Yaw: -0.033875] [Throttle:0.336499] [Flaps: 0.744752] [Data Ref: 1913.820313] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.054859] [Yaw: -0.000981] [Throttle:0.320850] [Flaps: 0.744752] [Data Ref: 1910.686768] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.054859] [Yaw: -0.015298] [Throttle:0.320850] [Flaps: 0.744752] [Data Ref: 1907.756348] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1904.660278] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: -0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1901.655762] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1898.550903] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1895.183838] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1892.069824] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1888.598145] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1885.403320] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1882.169556] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1878.656860] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1875.338989] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1871.924316] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1868.406738] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1864.754150] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1861.049072] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1857.609619] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1853.887573] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1850.200806] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1846.517212] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1842.890625] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1839.263306] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1835.623413] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1831.991699] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1828.366333] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1824.738159] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1821.278809] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1817.833984] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1814.394897] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1810.980713] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.216596] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1807.594971] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1804.172363] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1800.008179] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1796.659424] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1793.385986] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:0.305950] [Flaps: 0.744752] [Data Ref: 1790.122925] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.044116] [Yaw: -0.024224] [Throttle:0.290651] [Flaps: 0.744752] [Data Ref: 1786.875488] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1783.649414] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.120767] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1780.351074] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.353572] [Yaw: 0.049429] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1777.094482] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1773.871704] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1770.500732] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1767.188232] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1764.012939] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.127224] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1760.878052] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.188113] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1757.696411] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.120767] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1754.834961] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.167297] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1751.739990] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1748.533447] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1745.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1742.220459] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.101813] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1739.045898] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1735.968750] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.181120] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1732.883301] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.202254] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1729.839355] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.202254] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1726.802856] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.202254] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1723.769653] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1720.784302] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1717.808350] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.188113] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1714.835815] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1711.853027] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1708.906128] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1705.935059] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.188113] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1702.965210] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1700.037109] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1697.110962] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.054859] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1694.166504] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.044116] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1691.240479] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.049429] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1688.348145] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.054859] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1685.389648] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1682.543091] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.120767] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1679.671875] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.140336] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1676.821533] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.153698] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1673.983276] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.127224] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1671.104980] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.120767] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1668.339722] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.120767] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1665.535156] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.140336] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1662.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.146987] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1659.964111] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.153698] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1657.223389] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1654.516357] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1651.813843] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1649.174927] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1646.555054] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1643.941162] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.167297] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1641.306763] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.140336] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1638.645996] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.133748] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1636.026733] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.133748] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1633.397217] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.133748] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1630.761597] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.133748] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1628.169312] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.167297] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1625.577393] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1622.930908] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.209401] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1620.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.209401] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1617.870361] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.209401] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1615.272949] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.209401] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1612.666382] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.202254] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1610.044922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.202254] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1607.444214] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.195158] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1604.838257] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1602.220215] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.188113] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1599.644287] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.188113] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1597.060303] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1594.500366] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.181120] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1591.920166] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1589.361206] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1586.746704] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1584.186523] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1581.632202] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1579.073486] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1576.488770] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1573.865845] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1571.287598] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.174181] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1568.643555] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.401982] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1565.896606] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.410169] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1563.234253] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.410169] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1560.527222] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.410169] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1557.805908] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.410169] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1555.061646] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.410169] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1552.458496] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.401982] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1549.746826] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.401982] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1546.960449] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.393828] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1544.202637] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.377622] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1541.485718] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.369570] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1538.769043] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.353573] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1536.040283] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.209401] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1533.373779] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1530.777954] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1528.228394] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.015298] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1525.676636] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1523.177734] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.044116] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1520.738159] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.146987] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1518.343262] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.127224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1515.957275] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.101813] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1513.618042] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1511.355225] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1509.093750] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1506.791016] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.054859] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1504.537354] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.060399] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1502.330566] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.066042] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1500.196533] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.127224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1498.010620] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.101813] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1495.792236] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.089552] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1493.588379] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.127224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1491.365112] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.209401] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1489.143311] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.216596] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1486.919800] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.202254] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1484.662598] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.202254] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1482.379028] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.024224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1480.114746] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1477.810181] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1475.413086] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.127224] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1473.105225] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.120767] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1470.521729] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.083543] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1467.972778] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.083543] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1465.449829] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.202254] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1462.858032] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.089552] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1460.300049] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1457.838623] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1455.262817] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1452.665894] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.044116] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1450.185425] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.044116] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1447.683960] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.044116] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1445.117065] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.044116] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1442.528442] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1440.104126] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1437.811035] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1435.464478] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1433.151611] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1430.851929] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1428.515747] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1426.239746] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1423.956299] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1421.703857] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1419.484009] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1417.292480] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.291058] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1415.141235] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.369570] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1412.994019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.120767] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1410.873901] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.028969] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1408.791138] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1406.722900] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1404.730225] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1402.748779] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1400.786255] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.038928] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1398.836548] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1396.924438] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1395.009521] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1393.115356] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1391.286011] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1389.458130] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1387.637451] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1385.867920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1384.111206] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1382.352051] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1380.627686] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1378.901978] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1377.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1375.520386] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1373.876831] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1372.264526] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1370.717529] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1369.113159] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1367.502197] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.049429] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1365.874512] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.181120] [Yaw: 0.011174] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1364.338135] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.202254] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1362.980713] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.033876] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1361.653931] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.298737] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1360.290771] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.306456] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1358.727417] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1357.122559] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1355.543213] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1353.977539] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.077619] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1352.454712] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.167297] [Yaw: -0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1350.909668] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1349.365845] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1347.806396] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1346.270508] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1344.720337] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1343.185547] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1341.636963] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1340.119385] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1338.587524] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1337.051270] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1335.508789] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1333.908936] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1332.328735] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1330.751831] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1329.129395] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1327.540405] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1325.943237] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1324.319336] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1322.672607] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1321.021362] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1319.339722] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1317.668701] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1315.975586] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1314.271606] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1312.546753] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1310.808838] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1309.069458] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1307.353027] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.231131] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1305.640381] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.195158] [Yaw: 0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1303.905273] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1302.181763] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.114377] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1300.564331] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.140336] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1298.881958] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1297.154175] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1295.419678] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1293.739136] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1292.072510] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1290.422852] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1288.770508] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1287.109375] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1285.475220] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.060399] [Yaw: -0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1283.846069] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1282.239258] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.015298] [Yaw: -0.024224] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1280.654785] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: -0.028969] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1279.067383] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: -0.028969] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1277.456177] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1275.853760] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1274.226196] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1272.609863] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1271.021118] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1269.447144] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1267.817749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1266.184082] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1264.552246] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.283016] [Flaps: 0.744752] [Data Ref: 1262.813843] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.266366] [Flaps: 0.744752] [Data Ref: 1261.179321] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.211472] [Flaps: 0.744752] [Data Ref: 1259.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.156396] [Flaps: 0.744752] [Data Ref: 1257.905396] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1256.261475] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1254.620850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1252.941040] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1251.272705] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.060399] [Yaw: 0.000981] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1249.606323] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.120767] [Yaw: -0.011174] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1247.931152] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1246.252441] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1244.551147] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.044116] [Yaw: -0.019659] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1242.820435] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.024224] [Yaw: 0.066042] [Throttle:0.124431] [Flaps: 0.744752] [Data Ref: 1241.076660] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: 0.140336] [Throttle:0.179106] [Flaps: 0.744752] [Data Ref: 1239.303833] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.179106] [Flaps: 0.744752] [Data Ref: 1237.508057] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.187158] [Flaps: 0.744752] [Data Ref: 1235.697266] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1233.859863] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1232.052490] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1230.239502] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1228.419678] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1226.602539] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1224.795898] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1223.010620] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1221.263672] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1219.569092] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1217.893188] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1216.266602] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.060399] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1214.688477] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.095643] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1213.077026] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.101813] [Yaw: -0.003875] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1211.495117] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1209.956665] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.114377] [Yaw: -0.011174] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1208.470093] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.108059] [Yaw: -0.011174] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1206.993042] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:0.218780] [Flaps: 0.744752] [Data Ref: 1205.547974] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.146987] [Throttle:0.242126] [Flaps: 0.744752] [Data Ref: 1204.127808] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.028969] [Throttle:0.258034] [Flaps: 0.744752] [Data Ref: 1202.721924] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.095644] [Throttle:0.273366] [Flaps: 0.744752] [Data Ref: 1201.345947] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.312352] [Flaps: 0.744752] [Data Ref: 1200.062256] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.312352] [Flaps: 0.744752] [Data Ref: 1198.696777] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.060399] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1197.329224] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1195.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1194.560913] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1193.188477] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1191.796997] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1190.371338] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1188.965942] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1187.515869] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1186.048706] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1184.577393] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1183.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1181.769287] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1180.297852] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.359027] [Flaps: 0.744752] [Data Ref: 1178.836670] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.351164] [Flaps: 0.744752] [Data Ref: 1177.383911] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.044116] [Throttle:0.296913] [Flaps: 0.744752] [Data Ref: 1175.928345] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.296913] [Flaps: 0.744752] [Data Ref: 1174.604858] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.265600] [Flaps: 0.744752] [Data Ref: 1173.161133] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1171.736572] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1170.318604] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1168.886841] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1167.468384] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1166.069580] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1164.690918] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1163.300781] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1162.077881] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1160.714844] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1159.398315] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1158.085327] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1156.803833] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.476814] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1155.523682] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.260750] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1154.274292] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1153.090698] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.253279] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1151.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.268264] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1150.676392] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.238468] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1149.462036] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.167297] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1148.249023] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1147.046753] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1145.857666] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.181120] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1144.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1143.580322] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1142.360352] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1141.146484] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1139.919556] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1138.654907] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.275821] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1137.448486] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1136.146240] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1134.794312] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.127224] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1133.542358] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1132.163574] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1130.871094] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1129.463745] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1128.041382] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1126.601807] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1125.135986] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1123.672363] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.083543] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1122.209473] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1120.732910] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1119.286987] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.066042] [Yaw: 0.060399] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1117.821045] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: 0.071784] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1116.282715] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1114.748779] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1113.196899] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.015298] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1111.613159] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.181120] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1110.025879] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.077619] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1108.448242] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1106.867188] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1105.270630] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1103.647583] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.195158] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1102.010986] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.140336] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1100.346436] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1098.668335] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1096.987183] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1095.275024] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1093.553223] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1091.794556] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.054859] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1090.032471] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1088.266846] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.060399] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1086.469482] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.054859] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1084.613037] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1082.771973] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1080.903931] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1078.948853] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1077.081299] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1075.291138] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1073.347412] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1071.389038] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.060399] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1069.559814] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.291058] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1067.611816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1065.655640] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1063.820313] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1061.957397] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1060.172607] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1058.277710] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1056.518311] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1054.640137] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1052.783813] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1050.910400] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: -0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1049.021606] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1047.113770] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1045.207275] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1043.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1041.342529] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1039.418213] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1037.424316] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1035.429443] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1033.387207] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1031.370728] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1029.298584] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1027.174438] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1025.037720] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1022.882080] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1020.632690] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1018.385193] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1016.077637] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1013.759338] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1011.320923] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1008.916992] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1006.482422] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1003.933716] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 1001.341431] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 998.738220] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 996.322876] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 993.687012] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 991.014771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 988.278442] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 985.504517] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 982.696838] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 979.861938] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 977.013245] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 974.123962] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 971.249268] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 968.264404] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 965.185303] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 962.138184] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 959.067688] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 956.005798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 953.070190] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 950.037354] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 946.787415] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 943.531921] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 940.266113] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 936.992432] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 933.758972] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 930.436768] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 927.151550] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 923.825317] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 920.337769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 916.732849] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 913.211792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 909.830017] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 906.239807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 902.619324] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 898.949097] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 895.135925] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 891.266968] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 887.458252] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 883.602356] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 879.648193] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 875.729919] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 871.796265] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.011174] [Yaw: -0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 867.750977] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.202254] [Yaw: -0.019659] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 863.732666] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: -0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 859.690735] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.011174] [Yaw: -0.028969] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 855.827942] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.054859] [Yaw: -0.028969] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 852.018860] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: 0.146987] [Yaw: -0.024224] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 847.965332] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.181120] [Yaw: -0.003875] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 843.964905] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.209401] [Yaw: 0.038928] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 839.859558] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.188113] [Yaw: 0.083543] [Throttle:0.257876] [Flaps: 0.744752] [Data Ref: 835.824707] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.160469] [Yaw: -0.028969] [Throttle:0.218460] [Flaps: 0.744752] [Data Ref: 831.732300] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 827.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 823.730530] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 819.792175] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 815.872498] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 811.988525] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.054859] [Yaw: 0.024224] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 808.157898] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: 0.028969] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 804.440186] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 801.194519] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.202974] [Flaps: 0.744752] [Data Ref: 797.738831] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.015298] [Yaw: -0.019659] [Throttle:0.195044] [Flaps: 0.744752] [Data Ref: 794.353394] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.140255] [Flaps: 0.744752] [Data Ref: 791.035034] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.140255] [Flaps: 0.744752] [Data Ref: 788.134644] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 785.049194] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.095643] [Yaw: -0.003875] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 782.055847] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 779.135376] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: -0.167297] [Yaw: 0.003875] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 776.305969] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.167297] [Yaw: 0.011174] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 773.462524] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: -0.174181] [Yaw: 0.011174] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 770.779358] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 768.203247] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 765.671936] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.095438] [Flaps: 0.744752] [Data Ref: 763.139587] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.015298] [Yaw: 0.044116] [Throttle:0.072318] [Flaps: 0.744752] [Data Ref: 760.859131] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.060399] [Throttle:0.022290] [Flaps: 0.744752] [Data Ref: 758.619995] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.019659] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 756.382935] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 754.230225] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 752.213013] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 750.373169] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 748.620178] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 746.901123] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 745.239380] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 743.691895] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 742.221130] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 740.846069] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 739.635986] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 738.401917] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 737.309998] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 736.249023] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 735.287354] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 734.313538] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 733.378601] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 732.509277] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 731.661377] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 730.791443] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 729.951538] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 729.182983] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 728.350952] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 727.509521] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 726.666443] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 725.886902] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 725.025757] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 724.120789] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.095643] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 723.207764] [T/O: false ][Cruise: false ] +[Elevator: -0.140336] [Roll: -0.633565] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 722.262146] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 721.291321] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.015298] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 720.281860] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.038928] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 719.247314] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: -0.038928] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 718.150330] [T/O: false ][Cruise: false ] +[Elevator: 0.418388] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 717.014282] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.019659] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 715.843933] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 714.629150] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.019659] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 713.397278] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.019659] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 712.117798] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 710.826843] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 709.494934] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.101813] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 708.164978] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 706.834900] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.044116] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 705.510681] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 704.205261] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.160469] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 702.908936] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.071784] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 701.637756] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.028969] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 700.396484] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.011174] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 699.173950] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 697.942688] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: 0.089552] [Throttle:0.047217] [Flaps: 0.744752] [Data Ref: 696.698425] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: -0.028969] [Throttle:0.047217] [Flaps: 0.744752] [Data Ref: 695.482117] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:0.093878] [Flaps: 0.744752] [Data Ref: 694.268066] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.117477] [Flaps: 0.744752] [Data Ref: 693.045654] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.003875] [Yaw: -0.033875] [Throttle:0.171660] [Flaps: 0.744752] [Data Ref: 691.820251] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.210762] [Flaps: 0.744752] [Data Ref: 690.537231] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.210762] [Flaps: 0.744752] [Data Ref: 689.250366] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.007337] [Yaw: 0.049429] [Throttle:0.218892] [Flaps: 0.744752] [Data Ref: 687.983093] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 686.702087] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 685.431641] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.633565] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 684.155762] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: 0.385708] [Yaw: 0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 682.883118] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 681.615417] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 680.342773] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 679.048218] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 677.752991] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 676.474976] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 675.177490] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.209401] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 673.893066] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.298737] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 672.620850] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.306456] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 671.268250] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.167297] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 669.882751] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.028969] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 668.499207] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.140336] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 667.057129] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.353573] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 665.604065] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.345627] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 664.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.298737] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 662.638977] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.268264] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 661.130066] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.140336] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 659.544495] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.038928] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 658.000427] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.485283] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 656.420044] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.101813] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 654.813049] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 653.270020] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.038928] [Yaw: -0.000981] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 651.717957] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 650.174683] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 648.609070] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 647.038086] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 645.458618] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 643.834656] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 642.209351] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 640.559204] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 638.889954] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 637.151367] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 635.399719] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 633.646973] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 631.839355] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 630.044983] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 628.207214] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 626.373169] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 624.595093] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 622.814270] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 621.047729] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 619.278442] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 617.520813] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 615.774109] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 614.041260] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 612.331055] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 610.625549] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 608.944397] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 607.274536] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 605.604675] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 603.938354] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 602.230591] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 600.548096] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 598.867126] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 597.201660] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 595.533691] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 593.853516] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 592.150635] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 590.482056] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.120767] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 588.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.146987] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 587.117249] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.140336] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 585.467529] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.133748] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 583.836304] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 582.221008] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 580.630127] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.028969] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 579.037659] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 577.483521] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 575.910278] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.167297] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 574.381042] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.188113] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 572.896301] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.216596] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 571.450562] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.174181] [Yaw: -0.003875] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 569.999451] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 568.580261] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 567.165527] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 565.791138] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.066042] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 564.427734] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 563.096558] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 561.739380] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 560.360596] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.028969] [Yaw: -0.011174] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 558.987976] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.024224] [Yaw: -0.038928] [Throttle:0.250474] [Flaps: 0.744752] [Data Ref: 557.583374] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.019659] [Yaw: -0.033875] [Throttle:0.288786] [Flaps: 0.744752] [Data Ref: 556.169678] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.288786] [Flaps: 0.744752] [Data Ref: 554.711304] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.015298] [Yaw: 0.060399] [Throttle:0.296385] [Flaps: 0.744752] [Data Ref: 553.206177] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.024224] [Yaw: -0.038928] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 551.698120] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 550.192688] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 548.629395] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.033875] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 547.066284] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 545.486633] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 543.902771] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 542.316406] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 540.721741] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 539.274719] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.174181] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 537.696228] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.283419] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 536.126404] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.253279] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 534.554199] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.216596] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 533.128784] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.153698] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 531.593933] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.101813] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 530.061523] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 528.532410] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 527.011353] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 525.504639] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.077619] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 523.962585] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.077619] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 522.505249] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 520.986023] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 519.432922] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 517.884460] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 516.327148] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.049429] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 514.759827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 513.191711] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.133748] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 511.599701] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.188113] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 510.159607] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.181120] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 508.567566] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.167297] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 506.960754] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.167297] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 505.408234] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 503.819427] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.060399] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 502.279724] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.089552] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 500.750641] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.127224] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 499.209900] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.108059] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 497.665192] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.066042] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 496.114807] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 494.575867] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 493.069214] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 491.494568] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 489.927429] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.028969] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 488.358185] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.028969] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 486.793182] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.028969] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 485.199738] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.101813] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 483.610138] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.089552] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 481.987579] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.174181] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 480.353790] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 478.733398] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 477.084778] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.024224] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 475.589081] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 473.949707] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 472.304474] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 470.635651] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 468.991577] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 467.371918] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 465.763123] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 464.145172] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 462.565216] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 460.961304] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 459.452454] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 457.965851] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 456.495575] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 455.037018] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.007337] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 453.578094] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.066042] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 452.250336] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.140336] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 450.842865] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.083543] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 449.442444] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.071784] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 448.027679] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 446.635925] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 445.243408] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 443.826233] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 442.410034] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.044116] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 440.983032] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.028969] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 439.546143] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 438.068390] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 436.615082] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 435.108337] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 433.603394] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 432.121246] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 430.737427] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 429.225098] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 427.701660] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 426.179779] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 424.682098] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 423.170227] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 421.698242] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 420.273407] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 418.768280] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 417.285828] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 415.791046] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.033875] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 414.283783] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 412.783051] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 411.282501] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 409.792816] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 408.404968] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 406.842255] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 405.305725] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 403.790436] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 402.266937] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 400.728607] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 399.210022] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 397.799408] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 396.301483] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 394.795532] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 393.273743] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 391.743561] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 390.235138] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.028969] [Yaw: -0.003875] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 388.756622] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 387.181458] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 385.714966] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 384.087280] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 382.457275] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.335442] [Flaps: 0.744752] [Data Ref: 380.790222] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.120767] [Throttle:0.304184] [Flaps: 0.744752] [Data Ref: 379.145020] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.133748] [Throttle:0.249866] [Flaps: 0.744752] [Data Ref: 377.453125] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.249866] [Flaps: 0.744752] [Data Ref: 375.765900] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.019659] [Yaw: -0.114377] [Throttle:0.219076] [Flaps: 0.744752] [Data Ref: 374.066528] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 372.345398] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 370.631104] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.120767] [Yaw: 0.000981] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 368.925018] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 367.195557] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.033876] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 365.474487] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.060399] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 363.875244] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.167297] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 362.134552] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.209401] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 360.520325] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.216596] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 358.742279] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.223840] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 356.932129] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.223840] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 355.101471] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.223840] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 353.228088] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.223840] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 351.350281] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.223840] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 349.467773] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.216596] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 347.556824] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.202254] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 345.621002] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.160469] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 343.630066] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.015298] [Yaw: 0.015298] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 341.662292] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 339.704620] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.019659] [Yaw: 0.015298] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 337.733368] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.028969] [Yaw: 0.015298] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 335.784149] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 333.846466] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 331.900696] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 329.943146] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 327.945465] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.049429] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 325.947357] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.108059] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 324.076385] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.181120] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 322.088654] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.167297] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 320.077759] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.133748] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 318.042603] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.127224] [Yaw: 0.007337] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 315.965698] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.049429] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 313.834778] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.054859] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 311.744751] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.083543] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 309.613129] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.083543] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 307.451233] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.083543] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 305.238770] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.133748] [Yaw: 0.003875] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 303.115356] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.133748] [Yaw: 0.011174] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 301.028046] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.083543] [Yaw: 0.019659] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 298.799683] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.033875] [Yaw: 0.038928] [Throttle:0.203436] [Flaps: 0.744752] [Data Ref: 296.539703] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.015298] [Yaw: -0.089552] [Throttle:0.181370] [Flaps: 0.744752] [Data Ref: 294.296844] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.101813] [Throttle:0.128866] [Flaps: 0.744752] [Data Ref: 292.022247] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: -0.108059] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 289.726288] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 287.390015] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 285.049500] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 282.701569] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 280.338776] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.044116] [Yaw: 0.003875] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 277.927429] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 275.553741] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.044116] [Yaw: 0.003875] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 273.173645] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 270.759491] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.089552] [Yaw: 0.003875] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 268.378265] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.108059] [Yaw: 0.007337] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 266.138367] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 263.627075] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.075957] [Flaps: 0.744752] [Data Ref: 261.160706] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 258.706970] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 256.206177] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 253.723495] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 251.240616] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 248.727219] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.019659] [Yaw: 0.019659] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 246.181046] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 243.612106] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 241.049286] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.060399] [Yaw: 0.019659] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 238.494385] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.060399] [Yaw: 0.015298] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 235.946609] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.054859] [Yaw: 0.015298] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 233.317108] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.054859] [Yaw: 0.015298] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 230.690811] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.049429] [Yaw: 0.011174] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 228.060379] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.071784] [Yaw: 0.011174] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 225.424728] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.083543] [Yaw: 0.011174] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 222.763107] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.083543] [Yaw: 0.028969] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 220.095688] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: 0.066042] [Throttle:0.030630] [Flaps: 0.744752] [Data Ref: 217.439468] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.071784] [Yaw: 0.060399] [Throttle:0.000289] [Flaps: 0.744752] [Data Ref: 214.754471] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.060399] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 212.052277] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.028969] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 209.355957] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 206.636932] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 203.912277] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 201.100723] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 198.317993] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.033875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 195.535156] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 192.753983] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 189.971237] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 187.340256] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.060399] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 184.541046] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.071784] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 181.732208] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.066042] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 178.862900] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.054859] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 175.981064] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.044116] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 173.062515] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.044116] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 170.123337] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.003875] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 167.129822] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.024224] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 164.098190] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 161.000092] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.181120] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 157.925629] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.188113] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 154.848602] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.174181] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 151.812073] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.160469] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 148.706985] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.049429] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 145.599854] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.033876] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 142.638641] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.024224] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 139.570786] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 136.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 133.450989] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 130.403259] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 127.334862] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 124.260490] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.181120] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 121.186035] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.167297] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 118.183868] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.167297] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 115.140472] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.167297] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 112.142151] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.167297] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 109.187378] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.167297] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 106.295761] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.153698] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 103.373077] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.083543] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 100.440956] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.054859] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 97.557014] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 94.651184] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.095643] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 91.762802] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.127224] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 88.917007] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.127224] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 86.060188] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.101813] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 83.271301] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.007337] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 80.510330] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.007337] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 77.743896] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.044116] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 75.018501] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.153698] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 72.331993] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.153698] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 69.721405] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.146987] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 67.171715] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: 0.101813] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 64.633453] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.083543] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 61.731930] [T/O: false ][Cruise: false ] +[Elevator: 0.418388] [Roll: 0.083543] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 59.169392] [T/O: false ][Cruise: false ] +[Elevator: 0.426640] [Roll: 0.083543] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 57.066212] [T/O: false ][Cruise: false ] +[Elevator: 0.426640] [Roll: 0.071784] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 54.950253] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.060399] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 52.799995] [T/O: false ][Cruise: false ] +[Elevator: 0.642527] [Roll: 0.054859] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 50.574211] [T/O: false ][Cruise: false ] +[Elevator: 0.642527] [Roll: 0.054859] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 48.293102] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.049429] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 46.043549] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.049429] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 43.852497] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.108059] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 41.713318] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.181120] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 39.679962] [T/O: false ][Cruise: false ] +[Elevator: 0.485283] [Roll: 0.174181] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 37.795219] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.127224] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 35.909000] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.077619] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 34.086765] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.083543] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 32.349628] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.146987] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 30.729013] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.167297] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 29.206053] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.223840] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 27.787792] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.153698] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 26.529549] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.181120] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 25.418480] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.195158] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 24.459328] [T/O: false ][Cruise: false ] +[Elevator: 0.418388] [Roll: 0.238469] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 23.673716] [T/O: false ][Cruise: false ] +[Elevator: 0.493782] [Roll: 0.231131] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 23.043951] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.174181] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.550331] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.268264] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.169947] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.054859] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.892309] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.704123] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.038928] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.590757] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.083543] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.540636] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.095643] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.541931] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: -0.089552] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.582514] [T/O: false ][Cruise: false ] +[Elevator: 0.493782] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.650476] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.146987] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.733343] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.181120] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.820456] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.268264] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.902512] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.245851] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.972549] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.049429] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.024412] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.049429] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.054674] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.083543] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.062010] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.083543] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.046667] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.066042] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 22.010900] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.049429] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.958353] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.007337] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.889526] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.060399] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.811289] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.146987] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.726181] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.188113] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.637936] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.245851] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.544676] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.033876] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.446743] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.066042] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.346506] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.195158] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.242697] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.153698] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.134533] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.146987] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 21.020718] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.160469] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.902443] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.049429] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.781761] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.054859] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.661924] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.044116] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.552280] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.054859] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.451662] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.060399] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.367582] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.146987] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.295668] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.268264] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.234831] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.268264] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.181255] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.268264] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.130959] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.260750] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.081343] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.306456] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 20.033455] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.181120] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.990253] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.140336] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.950418] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.140336] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.911448] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.140336] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.874094] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.140336] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.837372] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.167297] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.801304] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.764740] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.160469] [Yaw: 0.393828] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.726475] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.167297] [Yaw: 0.624629] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.687536] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.160469] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.645069] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.160469] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.600422] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.153698] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.554499] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.509560] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: -0.528067] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.449329] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.054859] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.415100] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.386902] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.060399] [Yaw: -0.545380] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.363306] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.275820] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.343071] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.326195] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.312408] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.301636] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.293022] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.286543] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.253279] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.281406] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.276299] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.270472] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.263090] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.253740] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.751960] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.242088] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.651513] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.228664] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.214613] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.003875] [Yaw: -0.510867] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.201044] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.188940] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: -0.077619] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.178988] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.298737] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.171907] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.166815] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.485283] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.162460] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.157892] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.385708] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.152899] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.146999] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.139902] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.131247] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.121307] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.536710] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.110838] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.101606] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.108059] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.094959] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.091150] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.088541] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.253279] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.086380] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.083822] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.080555] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.076836] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.072351] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.410169] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.067400] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.061760] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.055655] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.660524] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.048311] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.040037] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.031500] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.023003] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.014366] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 19.005198] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.993759] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.975693] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.948719] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.909410] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.231131] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.858543] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.796452] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.722855] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.643885] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.561157] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.475895] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.724282] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.387732] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.297834] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.205648] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.114937] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 18.022537] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.545380] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.929739] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.839792] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.749451] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.662775] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.353572] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.574755] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.488754] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.404758] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.114377] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.321501] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.238565] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.157681] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 17.077438] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.999899] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.922882] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.846350] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.769737] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.696507] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.622292] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.547951] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.473616] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.398952] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.325510] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.256054] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.190588] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.125576] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 16.061907] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.998149] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.933572] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.868800] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.808242] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.753285] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.704866] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.665050] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.631904] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.603936] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.580515] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.562011] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.546920] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.535284] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.526472] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.519628] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.513663] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.507862] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.502877] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.499154] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.495724] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.492556] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.489342] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.486091] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.482600] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.478530] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.473407] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.467247] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.460893] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.454512] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.448593] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.443686] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.439686] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.436319] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.433240] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.430183] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.426979] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.423551] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.420475] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.418000] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.416198] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.414608] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.412996] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411192] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.409390] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.407787] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.406654] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.406167] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.406270] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.406819] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.407629] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.408511] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.409292] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.409934] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.410408] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.410736] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.410901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411008] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411059] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411087] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411089] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411078] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411067] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411059] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411066] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411081] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411111] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411150] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411194] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411239] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411277] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411312] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411336] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411353] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411365] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411369] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411376] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411373] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411373] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411371] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411377] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411388] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411387] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411389] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411390] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411392] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411389] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.744752] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.035029] [Roll: 0.044296] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.018923] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.004321] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086880] [Roll: -0.039663] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.056590] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071275] [Roll: -0.064363] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055495] [Roll: -0.089009] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.118361] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041315] [Roll: -0.105249] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.090196] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030369] [Roll: -0.114822] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.170566] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.204530] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.019047] [Roll: -0.203641] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008042] [Roll: -0.203723] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.196756] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.010446] [Roll: -0.112544] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.034773] [Roll: -0.004182] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050319] [Roll: 0.021982] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.006012] [Roll: 0.067705] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008889] [Roll: 0.113726] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.013704] [Roll: 0.116986] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.108875] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.013157] [Roll: 0.036100] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.025595] [Roll: -0.101452] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.188023] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.028713] [Roll: -0.180257] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056859] [Roll: -0.044133] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080056] [Roll: 0.000093] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074816] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059427] [Roll: 0.003117] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080820] [Roll: -0.028473] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057787] [Roll: -0.043137] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.018256] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053150] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062024] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062978] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.038206] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063754] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071299] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070703] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059657] [Roll: -0.021275] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.006384] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046733] [Roll: -0.030878] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033811] [Roll: -0.106090] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024475] [Roll: -0.227682] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.365282] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.372451] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031193] [Roll: -0.093019] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067058] [Roll: -0.031922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056037] [Roll: -0.033609] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067282] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068211] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.035294] [Yaw: 0.008775] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.037901] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047122] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033396] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.025886] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021401] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035800] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043709] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050692] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044153] [Roll: -0.040597] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060031] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067266] [Roll: -0.004521] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074320] [Roll: -0.011575] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058928] [Roll: -0.051242] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073743] [Roll: -0.088279] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.191789] [Yaw: 0.004992] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061103] [Roll: 0.018386] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.008160] [Roll: 0.219379] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.028206] [Roll: 0.322009] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033893] [Roll: 0.206230] [Yaw: 0.003571] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.005223] [Roll: 0.012704] [Yaw: -0.003596] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.010555] [Roll: 0.155923] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.016016] [Roll: 0.043616] [Yaw: 0.003024] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.000555] [Roll: 0.046504] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044527] [Roll: 0.224012] [Yaw: -0.003000] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004372] [Roll: 0.040652] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008448] [Roll: -0.008447] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.023052] [Roll: -0.006121] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038495] [Roll: -0.003922] [Yaw: 0.001600] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058009] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045279] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.020033] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049285] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024983] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043123] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.000524] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054587] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062782] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057436] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043708] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052004] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003484] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.022798] [Roll: -0.011233] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047728] [Roll: -0.173458] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.218852] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032374] [Roll: -0.049869] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.037891] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039302] [Roll: 0.092457] [Yaw: -0.002004] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062615] [Roll: 0.138345] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.006012] [Roll: 0.137516] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.026263] [Roll: 0.018102] [Yaw: 0.003526] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033495] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021770] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044466] [Roll: 0.003922] [Yaw: 0.003257] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056407] [Roll: 0.003318] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029269] [Roll: -0.004225] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074647] [Roll: -0.011628] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081965] [Roll: -0.004309] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079970] [Roll: -0.006701] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037072] [Roll: -0.055267] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058604] [Roll: -0.011106] [Yaw: -0.004141] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051626] [Roll: 0.009827] [Yaw: -0.011119] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064239] [Roll: 0.011765] [Yaw: -0.025023] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054641] [Roll: 0.011765] [Yaw: -0.027451] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.006507] [Yaw: -0.027451] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055643] [Roll: 0.003922] [Yaw: -0.022788] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067610] [Roll: -0.000472] [Yaw: -0.010821] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046963] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046982] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049434] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033743] [Roll: 0.000776] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038282] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031765] [Roll: 0.003922] [Yaw: 0.013137] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.012265] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.011035] [Throttle:0.278702] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.233306] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.002434] [Throttle:0.187150] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.145913] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080881] [Roll: 0.017279] [Yaw: 0.002757] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033838] [Roll: 0.050918] [Yaw: 0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064971] [Roll: 0.121198] [Yaw: -0.001749] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092726] [Roll: 0.082862] [Yaw: -0.009108] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152333] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.179759] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172626] [Roll: 0.047136] [Yaw: -0.015609] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.164936] [Roll: 0.039446] [Yaw: -0.008534] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.130439] [Roll: 0.027018] [Yaw: 0.050819] [Throttle:0.133766] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084254] [Roll: 0.009816] [Yaw: 0.117766] [Throttle:0.156815] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111350] [Roll: 0.002734] [Yaw: 0.050508] [Throttle:0.180392] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098051] [Roll: -0.003916] [Yaw: 0.003963] [Throttle:0.180392] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: 0.017580] [Throttle:0.187222] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: 0.002203] [Throttle:0.211441] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093522] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093186] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095932] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055050] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062896] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086453] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087311] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077726] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077647] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036935] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081830] [Roll: -0.030513] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070001] [Roll: -0.045391] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055083] [Roll: -0.058462] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056337] [Roll: -0.077379] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.098039] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067553] [Roll: -0.096266] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086912] [Roll: -0.057548] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095773] [Roll: 0.021519] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059843] [Roll: 0.093421] [Yaw: -0.008166] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024299] [Roll: 0.110500] [Yaw: -0.011765] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032955] [Roll: 0.070913] [Yaw: -0.006044] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068254] [Roll: 0.032166] [Yaw: 0.029491] [Throttle:0.221693] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.028752] [Roll: 0.012415] [Yaw: 0.141411] [Throttle:0.234860] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053830] [Roll: 0.005170] [Yaw: 0.065960] [Throttle:0.255079] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.024281] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074712] [Roll: 0.003922] [Yaw: 0.051487] [Throttle:0.278685] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080665] [Roll: 0.003922] [Yaw: 0.036185] [Throttle:0.304393] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064506] [Roll: 0.003922] [Yaw: -0.012884] [Throttle:0.315886] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062761] [Roll: 0.003922] [Yaw: 0.054854] [Throttle:0.328131] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081646] [Roll: 0.003922] [Yaw: -0.001801] [Throttle:0.359606] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095754] [Roll: -0.002779] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.094771] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087663] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.005236] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082528] [Roll: -0.003922] [Yaw: -0.011590] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089144] [Roll: -0.003922] [Yaw: -0.004973] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: 0.001662] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: 0.000317] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087311] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083887] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: -0.003277] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090105] [Roll: -0.003922] [Yaw: 0.003830] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083324] [Roll: -0.003922] [Yaw: -0.002951] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.002248] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.017442] [Throttle:0.343694] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.023562] [Throttle:0.317679] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084762] [Roll: -0.003922] [Yaw: -0.001512] [Throttle:0.298039] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088558] [Roll: -0.003922] [Yaw: -0.000993] [Throttle:0.291487] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.017944] [Throttle:0.266112] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.002714] [Throttle:0.259226] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.002344] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.010648] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.002614] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.002899] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.009468] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.005301] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008347] [Roll: -0.373950] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.021607] [Roll: -0.435139] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027699] [Roll: -0.229081] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086337] [Roll: -0.031184] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056796] [Roll: -0.146954] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033819] [Roll: -0.270588] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.264034] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.218820] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052956] [Roll: -0.177428] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069197] [Roll: -0.059704] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066539] [Roll: 0.012020] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046814] [Roll: 0.087498] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037713] [Roll: 0.147370] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068865] [Roll: 0.027751] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067900] [Roll: -0.007358] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049655] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045785] [Roll: 0.005057] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.140684] [Roll: 0.045727] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109946] [Roll: 0.014127] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.102781] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127439] [Roll: 0.252898] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.105465] [Roll: 0.163079] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063782] [Roll: 0.072345] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056665] [Roll: 0.163522] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047494] [Roll: 0.110817] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.013678] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.158217] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.071752] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033380] [Roll: 0.139918] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070835] [Roll: 0.062005] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077781] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061095] [Roll: 0.001136] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054204] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066927] [Roll: -0.006266] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073666] [Roll: -0.066917] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050356] [Roll: -0.086587] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048501] [Roll: -0.090196] [Yaw: -0.006402] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063749] [Roll: -0.090196] [Yaw: 0.004591] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078441] [Roll: -0.074473] [Yaw: 0.039281] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085557] [Roll: -0.039602] [Yaw: 0.069870] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.011765] [Yaw: 0.043169] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085720] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.007852] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074560] [Roll: 0.011814] [Yaw: -0.011715] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081390] [Roll: 0.018645] [Yaw: -0.004885] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048749] [Roll: 0.137221] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030712] [Roll: 0.106413] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.042643] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035630] [Roll: -0.000022] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.081144] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.176997] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060766] [Roll: -0.190214] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083130] [Roll: -0.085210] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.091054] [Roll: -0.009129] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.003922] [Yaw: -0.001552] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.001482] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081691] [Roll: -0.012757] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068024] [Roll: -0.033259] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054892] [Roll: -0.035294] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046189] [Roll: -0.040086] [Yaw: -0.000870] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058125] [Roll: -0.046884] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087027] [Roll: -0.054110] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104089] [Roll: -0.058824] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120064] [Roll: -0.058824] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.298022] [Roll: -0.058824] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.400792] [Roll: -0.032827] [Yaw: -0.010421] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.169284] [Roll: -0.032666] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059793] [Roll: -0.022803] [Yaw: -0.007601] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083579] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098698] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112135] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083746] [Roll: -0.005769] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.001144] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.016442] [Roll: 0.007591] [Yaw: -0.000252] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.011840] [Roll: 0.100028] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.070423] [Roll: 0.235764] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.110837] [Roll: 0.195446] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.004182] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.010756] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.017593] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043888] [Roll: 0.003922] [Yaw: 0.024711] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031253] [Roll: 0.003922] [Yaw: 0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037933] [Roll: 0.003922] [Yaw: 0.022174] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038166] [Roll: 0.003922] [Yaw: 0.010108] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.020622] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035422] [Roll: 0.003922] [Yaw: 0.003896] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067851] [Roll: 0.003922] [Yaw: -0.002590] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058472] [Roll: -0.001424] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011948] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062887] [Roll: -0.003922] [Yaw: -0.017227] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086095] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049759] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037772] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.010705] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.000601] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.004591] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.010894] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.017514] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.015056] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.008881] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.005373] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.006690] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.006424] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.010247] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.004923] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011638] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.001507] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.008552] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009314] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009676] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004971] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011673] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.018922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.013780] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.006785] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.007717] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004499] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.000817] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.016789] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015692] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015388] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.023766] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.005391] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015909] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015321] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015581] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.024840] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.005232] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.010027] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.005098] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.009396] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.007631] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004438] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.000294] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.006737] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.007847] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003507] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.003461] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.008888] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.014693] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037214] [Roll: -0.006443] [Yaw: -0.027067] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072441] [Roll: -0.193878] [Yaw: -0.019608] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045694] [Roll: -0.013333] [Yaw: -0.019608] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102483] [Roll: -0.003497] [Yaw: -0.027026] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.310942] [Roll: -0.010330] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.339266] [Roll: 0.035161] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.328557] [Roll: 0.108294] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.306606] [Roll: 0.152652] [Yaw: -0.023674] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.250451] [Roll: 0.173579] [Yaw: -0.011931] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173459] [Roll: 0.201506] [Yaw: 0.020485] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160502] [Roll: 0.206995] [Yaw: 0.089065] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153947] [Roll: 0.187331] [Yaw: 0.062847] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.114416] [Roll: 0.167803] [Yaw: -0.001716] [Throttle:0.236809] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.099610] [Yaw: -0.014342] [Throttle:0.214342] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.041473] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081860] [Roll: 0.023406] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036546] [Roll: 0.009887] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050459] [Roll: -0.010982] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069785] [Roll: -0.024301] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079358] [Roll: -0.041995] [Yaw: 0.000927] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078041] [Roll: -0.050980] [Yaw: 0.012545] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.042906] [Yaw: 0.023645] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084247] [Roll: -0.032049] [Yaw: 0.024205] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095767] [Roll: -0.020635] [Yaw: 0.012792] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083021] [Roll: -0.005715] [Yaw: -0.005715] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061548] [Roll: -0.011765] [Yaw: -0.012310] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093932] [Roll: -0.011765] [Yaw: -0.018786] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052647] [Roll: -0.011765] [Yaw: -0.013934] [Throttle:0.169877] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.011765] [Yaw: 0.000738] [Throttle:0.148528] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044960] [Roll: -0.005321] [Yaw: 0.002099] [Throttle:0.134733] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068049] [Roll: -0.000691] [Yaw: -0.011765] [Throttle:0.116265] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126392] [Roll: -0.022243] [Yaw: -0.010812] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.380420] [Roll: -0.095777] [Yaw: -0.004127] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.358786] [Roll: -0.121599] [Yaw: -0.003922] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.308218] [Roll: -0.152079] [Yaw: 0.000612] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.275389] [Roll: -0.168627] [Yaw: 0.006964] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.272283] [Roll: -0.168627] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.279685] [Roll: -0.172387] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.191839] [Yaw: 0.011719] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.146663] [Yaw: 0.005266] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.161608] [Roll: -0.038561] [Yaw: 0.009116] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086247] [Roll: 0.007834] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065762] [Roll: 0.009753] [Yaw: 0.017597] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046090] [Roll: 0.017162] [Yaw: 0.039678] [Throttle:0.080668] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033973] [Roll: 0.011765] [Yaw: 0.065346] [Throttle:0.043714] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029073] [Roll: 0.012305] [Yaw: 0.060986] [Throttle:0.007303] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048955] [Roll: 0.018933] [Yaw: 0.087496] [Throttle:0.000675] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.013983] [Yaw: 0.067698] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059115] [Roll: 0.011765] [Yaw: 0.050689] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079346] [Roll: 0.009229] [Yaw: 0.027923] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103446] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090258] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181861] [Roll: -0.022268] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173731] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104561] [Roll: -0.031467] [Yaw: 0.000094] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063464] [Roll: -0.022811] [Yaw: 0.001425] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.091622] [Roll: 0.003922] [Yaw: -0.005348] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097840] [Roll: 0.003922] [Yaw: -0.011565] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067343] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.006918] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055184] [Roll: 0.003922] [Yaw: -0.007561] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053282] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051522] [Roll: 0.003922] [Yaw: -0.004464] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051120] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051876] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.017651] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057711] [Roll: 0.003922] [Yaw: 0.026338] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052404] [Roll: 0.003922] [Yaw: 0.014613] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.006189] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056976] [Roll: 0.003922] [Yaw: -0.002074] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.006298] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054755] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.007782] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.001057] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.002469] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.002987] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003336] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044253] [Roll: -0.083541] [Yaw: -0.010649] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.072653] [Roll: -0.485935] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.020751] [Roll: -0.300140] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061533] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072249] [Roll: 0.001558] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.189639] [Roll: -0.011485] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.379115] [Roll: -0.032538] [Yaw: -0.018689] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.410014] [Roll: -0.035294] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.385913] [Roll: -0.014613] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.254154] [Roll: 0.015022] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.140303] [Roll: 0.019414] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112994] [Roll: 0.011765] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133286] [Roll: 0.012733] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158016] [Roll: 0.018916] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.204722] [Roll: 0.019608] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.219584] [Roll: 0.023553] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153041] [Roll: 0.043112] [Yaw: -0.016998] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.005777] [Roll: 0.074510] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.158819] [Roll: 0.074510] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.193217] [Roll: 0.091257] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.068155] [Roll: 0.061668] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.009991] [Roll: 0.041054] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.092559] [Roll: 0.072312] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.150193] [Roll: 0.153583] [Yaw: -0.012086] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062946] [Roll: 0.166501] [Yaw: -0.018544] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.135236] [Yaw: -0.025173] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.219559] [Roll: 0.084745] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.382284] [Roll: 0.038900] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.442912] [Roll: 0.025589] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.362223] [Roll: 0.006969] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.237156] [Roll: 0.003922] [Yaw: -0.000817] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129786] [Roll: -0.000273] [Yaw: 0.053709] [Throttle:0.020972] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076080] [Roll: -0.003922] [Yaw: 0.046283] [Throttle:0.042352] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063912] [Roll: -0.003922] [Yaw: -0.003078] [Throttle:0.052569] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061687] [Roll: -0.002490] [Yaw: 0.014565] [Throttle:0.069904] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.075212] [Roll: 0.003922] [Yaw: -0.041967] [Throttle:0.102663] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095110] [Roll: 0.003922] [Yaw: -0.008803] [Throttle:0.122561] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.190994] [Roll: 0.003922] [Yaw: -0.025793] [Throttle:0.158298] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.198113] [Roll: 0.008079] [Yaw: -0.022822] [Throttle:0.193336] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128239] [Roll: 0.008399] [Yaw: -0.008399] [Throttle:0.211765] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071082] [Roll: 0.003922] [Yaw: -0.007350] [Throttle:0.211765] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.117425] [Roll: 0.007306] [Yaw: 0.015306] [Throttle:0.215149] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.218829] [Roll: 0.019730] [Yaw: 0.029740] [Throttle:0.230228] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.268739] [Roll: 0.052829] [Yaw: -0.010416] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184598] [Roll: 0.136970] [Yaw: -0.003943] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074553] [Roll: 0.485908] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.209069] [Roll: 0.595791] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.356863] [Roll: 0.407908] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.259469] [Roll: 0.126887] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.026006] [Roll: 0.003199] [Yaw: -0.003199] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.012822] [Roll: -0.003393] [Yaw: 0.003393] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089298] [Roll: 0.002043] [Yaw: -0.002043] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.259187] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.344623] [Roll: 0.000862] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.302890] [Roll: -0.024638] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.229182] [Roll: -0.092387] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.196149] [Roll: -0.125420] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.185754] [Roll: -0.206247] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.291739] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.309804] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.163440] [Roll: -0.250660] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.125341] [Roll: -0.121667] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095421] [Roll: 0.007413] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.075350] [Roll: 0.034174] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106398] [Roll: 0.252135] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079594] [Roll: 0.341781] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062385] [Roll: 0.348300] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.326194] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.295001] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059437] [Roll: 0.266907] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072840] [Roll: 0.186490] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.042504] [Roll: 0.061249] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030082] [Roll: -0.095013] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035298] [Roll: -0.321643] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052858] [Roll: -0.363270] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071297] [Roll: -0.084117] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052561] [Roll: -0.002928] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.008595] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065556] [Roll: -0.050632] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103602] [Roll: -0.030871] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152869] [Roll: 0.030017] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180568] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160888] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180263] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173546] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172940] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.182587] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193786] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.197929] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172018] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181062] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.165873] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.050345] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.043579] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080576] [Roll: 0.031495] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064229] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041927] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049002] [Roll: 0.024757] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095572] [Roll: 0.016024] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093543] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073655] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070941] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083972] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.130787] [Roll: -0.012452] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180745] [Roll: -0.035451] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.217923] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.216986] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.231828] [Roll: -0.034838] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.212084] [Roll: -0.015823] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.003118] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.003250] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149592] [Roll: 0.015496] [Yaw: -0.009709] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.094252] [Roll: 0.038721] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063444] [Roll: 0.047758] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056685] [Roll: 0.040999] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.034668] [Yaw: -0.011138] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.028750] [Yaw: -0.005221] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066453] [Roll: 0.027451] [Yaw: -0.009079] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.175276] [Roll: 0.077834] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.308280] [Roll: 0.139615] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.340124] [Roll: 0.144572] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.327054] [Roll: 0.138037] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.226595] [Roll: 0.137255] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144005] [Roll: 0.112906] [Yaw: -0.007706] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109276] [Roll: 0.079071] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089330] [Roll: 0.048803] [Yaw: -0.005010] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035777] [Roll: 0.034812] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053995] [Roll: 0.016594] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078435] [Roll: 0.001959] [Yaw: -0.006862] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055318] [Roll: -0.016604] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008224] [Roll: -0.063259] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.018379] [Roll: -0.140943] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.005866] [Roll: -0.178481] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024948] [Roll: -0.200084] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.203955] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048636] [Roll: -0.189327] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077909] [Roll: -0.152765] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096165] [Roll: -0.067569] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144300] [Roll: -0.018345] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121503] [Roll: 0.015719] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090655] [Roll: 0.046364] [Yaw: -0.006689] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.122872] [Roll: 0.064240] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.211477] [Roll: 0.051582] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.235807] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.201515] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.213978] [Roll: 0.042505] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.224862] [Roll: 0.032423] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.203638] [Roll: 0.027451] [Yaw: -0.015402] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223697] [Roll: 0.027451] [Yaw: -0.035294] [Throttle:0.251232] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.236513] [Roll: 0.027451] [Yaw: -0.035294] [Throttle:0.270455] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.228939] [Roll: 0.017174] [Yaw: -0.035294] [Throttle:0.284787] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.209616] [Roll: 0.008286] [Yaw: -0.017902] [Throttle:0.290196] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.194295] [Roll: -0.000354] [Yaw: 0.021026] [Throttle:0.294472] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.201098] [Roll: -0.012863] [Yaw: 0.059528] [Throttle:0.308079] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.213236] [Roll: -0.025001] [Yaw: -0.019367] [Throttle:0.332354] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102478] [Roll: -0.032842] [Yaw: -0.008340] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.035294] [Yaw: 0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055913] [Roll: -0.035294] [Yaw: -0.005944] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067833] [Roll: -0.035294] [Yaw: -0.025118] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073983] [Roll: -0.035294] [Yaw: -0.012819] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078984] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079979] [Roll: -0.025797] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068260] [Roll: 0.001078] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035623] [Roll: 0.027550] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100633] [Roll: 0.047053] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.134716] [Roll: 0.203163] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.141429] [Roll: 0.274762] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126204] [Roll: 0.263221] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090951] [Roll: 0.236951] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097222] [Roll: 0.218138] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.141093] [Roll: 0.166482] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.143473] [Roll: 0.138739] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153250] [Roll: 0.091023] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172517] [Roll: 0.027387] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159013] [Roll: 0.003626] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120195] [Roll: -0.002843] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149396] [Roll: -0.009017] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180646] [Roll: -0.043813] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: -0.074510] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: -0.076964] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.191542] [Roll: -0.089991] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172437] [Roll: -0.083623] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.148991] [Roll: -0.092171] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133966] [Roll: -0.094750] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121200] [Roll: -0.090196] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090545] [Roll: -0.090196] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083827] [Roll: -0.051979] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055291] [Roll: -0.002544] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044353] [Roll: 0.060666] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052538] [Roll: 0.125040] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021610] [Roll: 0.184314] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074449] [Roll: 0.184314] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.117444] [Roll: 0.172617] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108584] [Roll: 0.168628] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104502] [Roll: 0.165766] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.115955] [Roll: 0.124258] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074878] [Roll: 0.010291] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087439] [Roll: -0.039950] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.074630] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086448] [Roll: -0.108939] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.129412] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084017] [Roll: -0.124419] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090150] [Roll: -0.106019] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.134438] [Roll: -0.067961] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145098] [Roll: -0.049194] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145098] [Roll: -0.028106] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.147029] [Roll: 0.009595] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.040049] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149164] [Roll: 0.031517] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.147306] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152615] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.146367] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129889] [Roll: 0.052799] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.131048] [Roll: 0.076146] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152928] [Roll: 0.102724] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183849] [Roll: 0.152197] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158909] [Roll: 0.165644] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.162623] [Roll: 0.168628] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172428] [Roll: 0.153425] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181383] [Roll: 0.102869] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.197636] [Roll: 0.024320] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.246934] [Roll: -0.003850] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155853] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092230] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069481] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.005249] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011172] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085833] [Roll: -0.007990] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096059] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089510] [Roll: -0.005980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082954] [Roll: -0.025648] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067034] [Roll: -0.042770] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.054776] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064348] [Roll: -0.058824] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.058824] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074587] [Roll: -0.058785] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087186] [Roll: -0.052485] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081001] [Roll: -0.023396] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092918] [Roll: 0.017554] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.124283] [Roll: 0.067267] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.135803] [Roll: 0.144614] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098291] [Roll: 0.132110] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.110271] [Roll: 0.099300] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.079066] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129958] [Roll: 0.069477] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160311] [Roll: 0.051265] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.154538] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.157423] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.175657] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192505] [Roll: 0.049481] [Yaw: -0.013264] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160953] [Roll: 0.043137] [Yaw: -0.019439] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166894] [Roll: 0.043137] [Yaw: -0.013498] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128513] [Roll: 0.033109] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.118047] [Roll: 0.021369] [Yaw: -0.014806] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.016609] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.033998] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.118887] [Roll: 0.035294] [Yaw: -0.013485] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109336] [Roll: 0.044072] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095213] [Roll: 0.050980] [Yaw: -0.014432] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.018926] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.012668] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071789] [Roll: 0.050980] [Yaw: -0.014485] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070783] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081669] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095718] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076886] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.138255] [Roll: 0.040356] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.195957] [Roll: 0.035294] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.214383] [Roll: 0.033008] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.191898] [Roll: 0.026415] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.185246] [Roll: -0.000193] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.164468] [Roll: -0.008883] [Yaw: -0.014646] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159578] [Roll: -0.021720] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.142076] [Roll: -0.038834] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052478] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076227] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085161] [Roll: -0.048172] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088018] [Roll: -0.042048] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074887] [Roll: -0.035483] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062650] [Roll: 0.000284] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.042900] [Roll: 0.007784] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.001964] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.002801] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.015135] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031825] [Roll: 0.028356] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056494] [Roll: 0.040594] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102342] [Roll: 0.047395] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137535] [Roll: 0.018067] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.150142] [Roll: 0.006721] [Yaw: -0.016808] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.156421] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160092] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153911] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126370] [Roll: 0.009236] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.130390] [Roll: 0.028429] [Yaw: -0.016275] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.134510] [Roll: 0.049563] [Yaw: -0.010347] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052019] [Roll: 0.043217] [Yaw: -0.004001] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.030550] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079214] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072328] [Roll: 0.018881] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054184] [Roll: 0.056620] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076770] [Roll: 0.125158] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136477] [Roll: 0.134143] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123575] [Roll: 0.082534] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086990] [Roll: 0.039931] [Yaw: -0.026974] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095519] [Roll: 0.027451] [Yaw: -0.089918] [Throttle:0.316246] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107906] [Roll: 0.027451] [Yaw: -0.111066] [Throttle:0.280580] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090829] [Roll: 0.023846] [Yaw: -0.052245] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066769] [Roll: 0.011816] [Yaw: -0.004125] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073154] [Roll: 0.018252] [Yaw: -0.107722] [Throttle:0.238005] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.019608] [Yaw: -0.049209] [Throttle:0.213907] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.036591] [Yaw: -0.003273] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067443] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052440] [Roll: 0.055358] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065841] [Roll: 0.095562] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077160] [Roll: 0.056066] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.105494] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133559] [Roll: 0.039441] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144548] [Roll: 0.053548] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123669] [Roll: 0.150983] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.177399] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.193452] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.210110] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.117694] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.099198] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100280] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104678] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098302] [Roll: 0.223267] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104815] [Roll: 0.216754] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100725] [Roll: 0.210529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.199475] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088675] [Roll: 0.179671] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076390] [Roll: 0.130706] [Yaw: 0.005802] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082086] [Roll: 0.039559] [Yaw: 0.011498] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069675] [Roll: 0.003599] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.009214] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060567] [Roll: -0.017865] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052860] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058658] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052157] [Roll: -0.007450] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090910] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083037] [Roll: -0.007758] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055081] [Roll: -0.011765] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064574] [Roll: -0.013857] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046853] [Roll: -0.031578] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059465] [Roll: -0.062507] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074186] [Roll: -0.104586] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087921] [Roll: -0.153958] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106478] [Roll: -0.180094] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133437] [Roll: -0.163260] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.154804] [Roll: -0.136323] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168403] [Roll: -0.128851] [Yaw: 0.011653] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.154990] [Roll: -0.095318] [Yaw: 0.004946] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.142464] [Roll: -0.064002] [Yaw: 0.009160] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.055074] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.135118] [Roll: -0.067373] [Yaw: 0.009627] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129412] [Roll: -0.089098] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129251] [Roll: -0.082353] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.122443] [Roll: -0.082353] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: -0.123482] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.116530] [Roll: -0.137255] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.137255] [Yaw: 0.012864] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082677] [Roll: -0.090681] [Yaw: 0.023489] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038818] [Roll: -0.040097] [Yaw: 0.027451] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.022906] [Roll: -0.030347] [Yaw: 0.002715] [Throttle:0.200623] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.034791] [Roll: -0.012520] [Yaw: -0.086420] [Throttle:0.188739] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062303] [Roll: -0.005013] [Yaw: -0.103700] [Throttle:0.151098] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030651] [Roll: -0.003922] [Yaw: -0.105882] [Throttle:0.109082] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.009051] [Yaw: -0.039205] [Throttle:0.082652] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.040305] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071465] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.011076] [Yaw: -0.003233] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.004195] [Yaw: 0.003648] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.015735] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081396] [Roll: 0.030704] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145292] [Roll: 0.044142] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193236] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.048531] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.044616] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.182846] [Roll: 0.051861] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.148448] [Roll: 0.072500] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079930] [Roll: 0.100577] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102106] [Roll: 0.064537] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128377] [Roll: 0.041213] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088320] [Roll: 0.018983] [Yaw: -0.000156] [Throttle:0.064315] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053100] [Roll: 0.000601] [Yaw: 0.002720] [Throttle:0.044940] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064938] [Roll: -0.003922] [Yaw: 0.008306] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060331] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087653] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079939] [Roll: 0.001207] [Yaw: 0.001207] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070511] [Roll: 0.003922] [Yaw: 0.007920] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079697] [Roll: 0.009134] [Yaw: 0.014371] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106962] [Roll: 0.018529] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113418] [Roll: 0.012072] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.091557] [Roll: 0.006223] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077831] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102800] [Roll: -0.021225] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.146827] [Roll: -0.058824] [Yaw: 0.017879] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152727] [Roll: -0.058824] [Yaw: 0.011979] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.052245] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.143181] [Roll: -0.046100] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.047208] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112869] [Roll: -0.060125] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070341] [Roll: -0.076594] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057880] [Roll: -0.082353] [Yaw: 0.013651] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051132] [Roll: -0.082353] [Yaw: 0.027148] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.082353] [Yaw: 0.059168] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.078194] [Yaw: 0.079144] [Throttle:0.027214] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062685] [Roll: -0.068658] [Yaw: 0.066788] [Throttle:0.014751] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.058023] [Yaw: 0.026650] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.051874] [Yaw: 0.020501] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087408] [Roll: -0.025704] [Yaw: 0.024663] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069544] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055596] [Roll: -0.011765] [Yaw: 0.026682] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096468] [Roll: -0.011765] [Yaw: 0.019870] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.011765] [Yaw: 0.014105] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093718] [Roll: -0.020407] [Yaw: 0.007444] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087702] [Roll: -0.029945] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081129] [Roll: -0.035294] [Yaw: 0.002698] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074084] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060129] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077194] [Roll: -0.035294] [Yaw: -0.010045] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.114616] [Roll: -0.051426] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.147115] [Roll: -0.067675] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.164164] [Roll: -0.071130] [Yaw: -0.018523] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.064014] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.051096] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.050980] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.045194] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.043137] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172412] [Roll: -0.027999] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.162505] [Roll: -0.000592] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133773] [Roll: 0.026571] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120502] [Roll: 0.057913] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107651] [Roll: 0.141442] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.094406] [Roll: 0.175894] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.184314] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107152] [Roll: 0.180923] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.138572] [Roll: 0.173853] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.182297] [Roll: 0.161361] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.109117] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.210168] [Roll: 0.060033] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.229052] [Roll: 0.032973] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.211077] [Roll: 0.022781] [Yaw: -0.029008] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159166] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097842] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052696] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.022669] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011400] [Roll: 0.004651] [Yaw: -0.034565] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.005469] [Roll: 0.016513] [Yaw: -0.022702] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036588] [Roll: 0.038274] [Yaw: -0.014941] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095297] [Roll: 0.107717] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144374] [Roll: 0.166769] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173977] [Roll: 0.175133] [Yaw: -0.013102] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.199014] [Roll: 0.168874] [Yaw: -0.019361] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.232347] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223929] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.211196] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.238175] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.232395] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.261471] [Roll: 0.163611] [Yaw: -0.024624] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.284486] [Roll: 0.151702] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.290119] [Roll: 0.121260] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.278501] [Roll: 0.074786] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.265492] [Roll: 0.055101] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.267208] [Roll: 0.024202] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.258780] [Roll: -0.028550] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.234243] [Roll: -0.090641] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.215648] [Roll: -0.121607] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.209270] [Roll: -0.127985] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.217548] [Roll: -0.129412] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.217192] [Roll: -0.113569] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.195485] [Roll: -0.076602] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132896] [Roll: -0.007754] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071180] [Roll: 0.001902] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086048] [Roll: 0.011714] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133833] [Roll: 0.040049] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166676] [Roll: 0.100479] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144148] [Roll: 0.128639] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.271962] [Roll: 0.147233] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.345799] [Roll: 0.146501] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.352255] [Roll: 0.128023] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.388790] [Roll: 0.097670] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.407088] [Roll: 0.085471] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.420605] [Roll: 0.082353] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.427451] [Roll: 0.082353] [Yaw: -0.030320] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.426291] [Roll: 0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.419719] [Roll: 0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.425343] [Roll: 0.076618] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.457802] [Roll: 0.061502] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.536535] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.644691] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.662042] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.502469] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.341419] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.210009] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.161797] [Roll: 0.062124] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168425] [Roll: 0.135031] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.174913] [Roll: 0.174967] [Yaw: -0.029009] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.375761] [Roll: 0.179204] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.437450] [Roll: 0.168306] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.311191] [Roll: 0.128586] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.201585] [Roll: 0.076079] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.319330] [Roll: 0.081686] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.321787] [Roll: 0.082353] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.286545] [Roll: 0.117899] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.262745] [Roll: 0.154282] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.263754] [Roll: 0.175688] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.269863] [Roll: 0.218455] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.289482] [Roll: 0.192040] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.200398] [Roll: 0.179381] [Yaw: -0.022518] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.249681] [Roll: 0.187290] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.370641] [Roll: 0.198092] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.365105] [Roll: 0.192556] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.425265] [Roll: 0.228492] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.457321] [Roll: 0.225032] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.383140] [Roll: 0.198285] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.251960] [Roll: 0.202942] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.182337] [Roll: 0.268960] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081221] [Roll: 0.185689] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037243] [Roll: 0.096675] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021294] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021654] [Roll: 0.046036] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056540] [Roll: 0.028593] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123083] [Roll: -0.075364] [Yaw: -0.026034] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.098039] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.203978] [Roll: -0.094114] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.333327] [Roll: -0.076029] [Yaw: -0.029475] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.503239] [Roll: -0.029223] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.393825] [Roll: 0.034122] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.350756] [Roll: 0.111431] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.344607] [Roll: 0.180387] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.353382] [Roll: 0.230955] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.361373] [Roll: 0.268922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.326591] [Roll: 0.251531] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.323030] [Roll: 0.144783] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.306912] [Roll: 0.046021] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.264641] [Roll: -0.026742] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183266] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172043] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172913] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.171804] [Roll: -0.075353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159325] [Roll: -0.058094] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.147709] [Roll: -0.052286] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.140025] [Roll: -0.015465] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123708] [Roll: 0.020178] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123195] [Roll: 0.065355] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.238647] [Roll: 0.131328] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.293822] [Roll: 0.150278] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.284774] [Roll: 0.238759] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.270049] [Roll: 0.319971] [Yaw: -0.036809] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.332342] [Roll: 0.230295] [Yaw: -0.043094] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183552] [Roll: 0.068567] [Yaw: -0.036625] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111649] [Roll: 0.045617] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133323] [Roll: 0.121552] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.189755] [Roll: 0.189500] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223386] [Roll: 0.176614] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.262945] [Roll: 0.137274] [Yaw: -0.035304] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.387664] [Roll: 0.149152] [Yaw: -0.041243] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.399715] [Roll: 0.156904] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.293690] [Roll: 0.126283] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120656] [Roll: 0.049154] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.114284] [Roll: 0.036411] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128844] [Roll: 0.040334] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144116] [Roll: 0.043137] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166961] [Roll: 0.045474] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.199561] [Roll: 0.051419] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193206] [Roll: 0.057774] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: 0.135581] [Yaw: -0.037655] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.188751] [Roll: 0.212907] [Yaw: -0.038700] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.272102] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.277920] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.266801] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.262745] [Yaw: -0.039017] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.267987] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.283758] [Yaw: -0.036626] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183953] [Roll: 0.308089] [Yaw: -0.043047] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.157643] [Roll: 0.183117] [Yaw: -0.036470] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158559] [Roll: 0.143930] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.146967] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.141940] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181600] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.179026] [Roll: 0.147831] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136605] [Roll: 0.160914] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103471] [Roll: 0.165912] [Yaw: -0.021715] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.118272] [Roll: 0.160784] [Yaw: 0.079697] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136116] [Roll: 0.160784] [Yaw: 0.406327] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.110612] [Roll: 0.160784] [Yaw: 0.635864] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.101324] [Roll: 0.160784] [Yaw: 0.491550] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.160784] [Yaw: 0.376037] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103727] [Roll: 0.160784] [Yaw: 0.343252] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.122380] [Roll: 0.159973] [Yaw: 0.139151] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128654] [Roll: 0.153699] [Yaw: 0.032483] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123649] [Roll: 0.141415] [Yaw: -0.003445] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100217] [Roll: 0.060389] [Yaw: -0.293607] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074959] [Roll: -0.018710] [Yaw: -0.573777] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.464216] [T/O: false ][Cruise: false ] +[Elevator: 0.059266] [Roll: -0.050096] [Yaw: -0.667934] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.440420] [T/O: false ][Cruise: false ] +[Elevator: 0.077528] [Roll: -0.050980] [Yaw: -0.128168] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.415585] [T/O: false ][Cruise: false ] +[Elevator: 0.077387] [Roll: -0.050980] [Yaw: 0.006799] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.393364] [T/O: false ][Cruise: false ] +[Elevator: 0.063359] [Roll: -0.054697] [Yaw: -0.375198] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.377214] [T/O: false ][Cruise: false ] +[Elevator: 0.064585] [Roll: -0.042952] [Yaw: -0.646429] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.360632] [T/O: false ][Cruise: false ] +[Elevator: 0.093378] [Roll: -0.003145] [Yaw: -0.251243] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.346006] [T/O: false ][Cruise: false ] +[Elevator: 0.054308] [Roll: 0.003367] [Yaw: -0.023331] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.334454] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.322369] [T/O: false ][Cruise: false ] +[Elevator: 0.046320] [Roll: 0.003922] [Yaw: 0.005400] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.312992] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.022243] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.305197] [T/O: false ][Cruise: false ] +[Elevator: 0.038669] [Roll: 0.003922] [Yaw: 0.046465] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.297310] [T/O: false ][Cruise: false ] +[Elevator: 0.030604] [Roll: 0.003922] [Yaw: 0.077663] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.292295] [T/O: false ][Cruise: false ] +[Elevator: 0.049727] [Roll: 0.003922] [Yaw: 0.096786] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.288300] [T/O: false ][Cruise: false ] +[Elevator: 0.056416] [Roll: 0.003922] [Yaw: 0.206745] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.283749] [T/O: false ][Cruise: false ] +[Elevator: 0.054768] [Roll: 0.003922] [Yaw: 0.254902] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.280016] [T/O: false ][Cruise: false ] +[Elevator: 0.048151] [Roll: 0.003922] [Yaw: 0.164351] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.276247] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.002385] [Yaw: 0.010069] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.272299] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.003922] [Yaw: 0.036832] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.266933] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.003922] [Yaw: 0.068621] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.261564] [T/O: false ][Cruise: false ] +[Elevator: 0.032348] [Roll: -0.003922] [Yaw: -0.022595] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.255241] [T/O: false ][Cruise: false ] +[Elevator: 0.023400] [Roll: -0.003922] [Yaw: -0.419119] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.246883] [T/O: false ][Cruise: false ] +[Elevator: 0.037265] [Roll: -0.003922] [Yaw: -0.718751] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.239681] [T/O: false ][Cruise: false ] +[Elevator: 0.075609] [Roll: -0.003922] [Yaw: -0.624503] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.231274] [T/O: false ][Cruise: false ] +[Elevator: 0.094306] [Roll: -0.003922] [Yaw: -0.107210] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.222225] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.300315] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.212374] [T/O: false ][Cruise: false ] +[Elevator: 0.084458] [Roll: -0.003922] [Yaw: -0.288576] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.202999] [T/O: false ][Cruise: false ] +[Elevator: 0.056519] [Roll: -0.003922] [Yaw: -0.005951] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.194532] [T/O: false ][Cruise: false ] +[Elevator: 0.033180] [Roll: -0.003922] [Yaw: -0.028952] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.186382] [T/O: false ][Cruise: false ] +[Elevator: 0.084783] [Roll: -0.003922] [Yaw: -0.183762] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.179859] [T/O: false ][Cruise: false ] +[Elevator: 0.078702] [Roll: -0.003922] [Yaw: -0.125287] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.174841] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.000532] [Yaw: 0.111262] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.169777] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.381856] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.166765] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.526200] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.163755] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.062570] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.160669] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.169467] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.157068] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.243592] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.153391] [T/O: false ][Cruise: false ] +[Elevator: 0.077694] [Roll: 0.003922] [Yaw: 0.148344] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.149673] [T/O: false ][Cruise: false ] +[Elevator: 0.080450] [Roll: 0.003922] [Yaw: 0.081943] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.145102] [T/O: false ][Cruise: false ] +[Elevator: 0.074975] [Roll: 0.003922] [Yaw: 0.306425] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.140247] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.083632] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.135029] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.000607] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.128740] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.138349] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.122334] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.445234] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.115124] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.036861] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.109205] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.102877] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.134551] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.096987] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.163287] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.094162] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.022283] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.091322] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.014115] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.089087] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.145120] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.087645] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.082071] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.086008] [T/O: false ][Cruise: false ] +[Elevator: 0.071717] [Roll: -0.003922] [Yaw: 0.012838] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.084469] [T/O: false ][Cruise: false ] +[Elevator: 0.067395] [Roll: -0.003922] [Yaw: 0.077361] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.082165] [T/O: false ][Cruise: false ] +[Elevator: 0.074040] [Roll: -0.003922] [Yaw: 0.389664] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.079861] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.091642] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.077072] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.032866] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.074308] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.163399] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.071234] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.370711] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.068254] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.069678] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.064341] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.060289] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.235726] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.055799] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.339729] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.050577] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.010628] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.045351] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.004068] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.039196] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.009654] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.032921] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.026798] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.007573] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.021431] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.001716] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.015242] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.000979] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.009176] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.016805] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.001259] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.009167] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.992130] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.000217] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.982914] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.963034] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.006455] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.941658] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.095827] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.920143] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.211102] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.884584] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.109888] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.848093] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.035586] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.807091] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.143966] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.752346] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.308030] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.698483] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.034302] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.641840] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.009815] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.578058] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003699] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.513350] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.307769] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.457546] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.388653] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.397362] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.331039] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.268671] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.207022] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.139051] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.051639] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.070110] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.254234] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.001762] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.447149] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.933012] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.865730] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.797827] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.731180] [T/O: false ][Cruise: false ] +[Elevator: 0.069335] [Roll: -0.003922] [Yaw: -0.016776] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.666420] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.245345] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.599087] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.237225] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.532640] [T/O: false ][Cruise: false ] +[Elevator: 0.069175] [Roll: -0.003922] [Yaw: -0.001413] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.468939] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.019950] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.402779] [T/O: false ][Cruise: false ] +[Elevator: 0.073554] [Roll: -0.003922] [Yaw: -0.093455] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.339891] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.278101] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.218035] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.157812] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.097061] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.038137] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.979342] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.920605] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.861856] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.803335] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.747263] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.691193] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.644997] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.592222] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.541950] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.491545] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.436291] [T/O: false ][Cruise: false ] +[Elevator: 0.061409] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.381584] [T/O: false ][Cruise: false ] +[Elevator: 0.062562] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.337849] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.288502] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.239958] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.191977] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.147608] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.101343] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.054970] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.008739] [T/O: false ][Cruise: false ] +[Elevator: 0.066334] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.962391] [T/O: false ][Cruise: false ] +[Elevator: 0.059799] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.916759] [T/O: false ][Cruise: false ] +[Elevator: 0.064428] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.873197] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.826680] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.785591] [T/O: false ][Cruise: false ] +[Elevator: 0.064806] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.749692] [T/O: false ][Cruise: false ] +[Elevator: 0.059472] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.715199] [T/O: false ][Cruise: false ] +[Elevator: 0.065656] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.685636] [T/O: false ][Cruise: false ] +[Elevator: 0.061714] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.660893] [T/O: false ][Cruise: false ] +[Elevator: 0.062744] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.635785] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.613527] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.595824] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.577978] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.563878] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.553225] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.542974] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.534970] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.528731] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.522480] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.517459] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.513131] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.508923] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.505750] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.502766] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.499999] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.497377] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.494973] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.492599] [T/O: false ][Cruise: false ] +[Elevator: 0.062416] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.490204] [T/O: false ][Cruise: false ] +[Elevator: 0.061795] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.487882] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.485423] [T/O: false ][Cruise: false ] +[Elevator: 0.065608] [Roll: -0.003922] [Yaw: -0.002863] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.482469] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.479574] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.476535] [T/O: false ][Cruise: false ] +[Elevator: 0.064118] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.472466] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.468021] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.463818] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.459556] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.455004] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.450508] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.446855] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.443592] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.440402] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.437811] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.435627] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.433171] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.430827] [T/O: false ][Cruise: false ] +[Elevator: 0.061633] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.428639] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.426439] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.424421] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.422268] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.420005] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.418411] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.416971] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.415626] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.414387] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.413191] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411996] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410752] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409483] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.408241] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407546] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406939] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406360] [T/O: false ][Cruise: false ] +[Elevator: 0.053913] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406333] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406579] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406837] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407326] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407955] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.408568] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409053] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409540] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410020] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410327] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410560] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410786] [T/O: false ][Cruise: false ] +[Elevator: 0.036727] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410910] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410975] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411047] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411073] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411076] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411079] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411077] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411070] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411064] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411072] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411088] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411104] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411134] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411170] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411206] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411238] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411266] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411297] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411315] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411331] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411348] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411358] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411365] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411371] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411373] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411376] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411377] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411373] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411377] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.029253] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.034902] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.028308] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411388] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411391] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411393] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411392] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411388] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027671] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.033542] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.030483] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.030673] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411391] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.031203] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411373] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411376] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411320] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411161] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411067] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411062] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410263] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407508] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407082] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.412630] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.419199] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.430771] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.444043] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.465688] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.484962] [T/O: false ][Cruise: false ] +[Elevator: 0.065274] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.497250] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.516025] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.552708] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.635280] [T/O: false ][Cruise: false ] +[Elevator: 0.059661] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.797701] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.032776] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.268669] [T/O: false ][Cruise: false ] +[Elevator: 0.065755] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.542946] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.820951] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.117018] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.423075] [T/O: false ][Cruise: false ] +[Elevator: 0.069428] [Roll: -0.003922] [Yaw: -0.001160] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.741529] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.074001] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.414806] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.219817] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.721956] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.103172] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.936756] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.010754] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.001769] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.042212] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.011526] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.066370] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.334199] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.081841] [T/O: false ][Cruise: false ] +[Elevator: 0.069960] [Roll: -0.003922] [Yaw: 0.023376] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.092037] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.156872] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.116968] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.134329] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.148352] [T/O: false ][Cruise: false ] +[Elevator: 0.074850] [Roll: 0.003922] [Yaw: 0.236509] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.166483] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.001536] [Yaw: 0.158449] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.195074] [T/O: false ][Cruise: false ] +[Elevator: 0.080764] [Roll: -0.003922] [Yaw: -0.229475] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.241850] [T/O: false ][Cruise: false ] +[Elevator: 0.024558] [Roll: -0.003922] [Yaw: -0.318318] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.274399] [T/O: false ][Cruise: false ] +[Elevator: 0.049302] [Roll: 0.003922] [Yaw: 0.201206] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.295025] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.035186] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.342394] [T/O: false ][Cruise: false ] +[Elevator: 0.089379] [Roll: -0.014025] [Yaw: -0.373691] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.431808] [T/O: false ][Cruise: false ] +[Elevator: 0.065376] [Roll: -0.037875] [Yaw: -0.631272] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113302] [Roll: 0.160784] [Yaw: 0.241120] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.124379] [Roll: 0.160784] [Yaw: 0.181471] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.138039] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.302791] [Yaw: -0.041384] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.276216] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.177924] [Roll: 0.047301] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.254062] [Roll: 0.108946] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.202331] [Roll: 0.186985] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.327281] [Roll: 0.239845] [Yaw: -0.042532] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107567] [Roll: 0.039547] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172817] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.321446] [Roll: 0.174885] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.353071] [Roll: 0.101398] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.098039] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044320] [Roll: 0.129704] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.444107] [Roll: 0.238246] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.289146] [Roll: 0.192600] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.325455] [Roll: 0.082353] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.176327] [Roll: 0.183449] [Yaw: -0.027595] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.516424] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.421764] [Roll: 0.080197] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.387568] [Roll: 0.098595] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.156676] [Roll: 0.112978] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183495] [Roll: -0.063413] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.236657] [Roll: -0.086617] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.293558] [Roll: 0.138095] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.206797] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108009] [Roll: 0.127490] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046924] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.212318] [Roll: 0.057525] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.184314] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.156586] [Roll: 0.004143] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.050980] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089322] [Roll: -0.038779] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089463] [Roll: -0.028185] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.074527] [Yaw: 0.090145] [Throttle:0.023546] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078431] [Roll: -0.073039] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.053135] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106085] [Roll: 0.009855] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084418] [Roll: -0.001032] [Yaw: -0.001032] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132692] [Roll: 0.038336] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.043286] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.014915] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.008773] [Yaw: -0.042818] [Throttle:0.083486] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035021] [Roll: -0.039147] [Yaw: 0.027451] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: -0.105505] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.052403] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132452] [Roll: -0.164574] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044972] [Roll: -0.038352] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051570] [Roll: -0.005690] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067134] [Roll: -0.002754] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.101078] [Roll: 0.210882] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.198497] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113397] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073045] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100482] [Roll: 0.027451] [Yaw: -0.077660] [Throttle:0.258309] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136408] [Roll: 0.133866] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.032258] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.154179] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127437] [Roll: 0.026482] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.001955] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086224] [Roll: -0.047109] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.161191] [Roll: -0.024140] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193088] [Roll: 0.035294] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069177] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112645] [Roll: 0.037456] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145403] [Roll: 0.037331] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.154944] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102546] [Roll: 0.110888] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088992] [Roll: -0.051583] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069907] [Roll: -0.039896] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092896] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.167923] [Roll: 0.168628] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136010] [Roll: 0.042597] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112941] [Roll: -0.086387] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087304] [Roll: -0.039412] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104989] [Roll: 0.176769] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083073] [Roll: -0.047455] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183542] [Roll: -0.087324] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128615] [Roll: -0.006049] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.141470] [Roll: 0.166051] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108007] [Roll: 0.049265] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.214766] [Roll: -0.026531] [Yaw: -0.029315] [Throttle:0.335415] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.225819] [Roll: 0.027451] [Yaw: -0.035294] [Throttle:0.254415] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223322] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.150344] [Roll: -0.013057] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027069] [Roll: -0.201674] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064399] [Roll: 0.008977] [Yaw: -0.010371] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.235943] [Roll: 0.137255] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.028375] [Yaw: -0.004845] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054385] [Roll: -0.178173] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060328] [Roll: -0.176471] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.176471] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067738] [Roll: -0.164686] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074259] [Roll: -0.092953] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068567] [Roll: -0.060480] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071122] [Roll: -0.046525] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.046173] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.062504] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062444] [Roll: -0.082754] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.105060] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.130497] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.148278] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.142894] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054996] [Roll: -0.129224] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055848] [Roll: -0.121569] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.121569] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.121752] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.127810] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041905] [Roll: -0.138487] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.145098] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.147642] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035453] [Roll: -0.153418] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.042328] [Roll: -0.174042] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.176471] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.172935] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.168627] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.170114] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.176471] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.176471] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.170055] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051977] [Roll: -0.150948] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.133935] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060608] [Roll: -0.130304] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074098] [Roll: -0.137049] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058157] [Roll: -0.131804] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063673] [Roll: -0.133643] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076671] [Roll: -0.137255] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078790] [Roll: -0.140818] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053598] [Roll: -0.166010] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063004] [Roll: -0.174639] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072812] [Roll: -0.201053] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064093] [Roll: -0.207843] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065935] [Roll: -0.207843] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065567] [Roll: -0.207843] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051861] [Roll: -0.207843] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057270] [Roll: -0.207325] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036132] [Roll: -0.200279] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.200000] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021667] [Roll: -0.195457] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.007997] [Roll: -0.188389] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.184314] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004874] [Roll: -0.181456] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.028596] [Roll: -0.110289] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066655] [Roll: -0.053609] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073193] [Roll: -0.023080] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056561] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056082] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092524] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056552] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047008] [Roll: -0.000051] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059335] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070512] [Roll: 0.005921] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045170] [Roll: 0.018591] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067110] [Roll: 0.049574] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096863] [Roll: 0.170590] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.333197] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102929] [Roll: 0.411765] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090078] [Roll: 0.411765] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113719] [Roll: 0.411765] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100637] [Roll: 0.411765] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089115] [Roll: 0.411765] [Yaw: 0.016227] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.411765] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083819] [Roll: 0.411765] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090015] [Roll: 0.411583] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083777] [Roll: 0.405345] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077391] [Roll: 0.398959] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.396078] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.394875] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.388388] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080159] [Roll: 0.382586] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070345] [Roll: 0.376390] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045663] [Roll: 0.368789] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.355485] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.241702] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.000050] [Roll: 0.104583] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.000090] [Roll: -0.004101] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.010736] [Roll: -0.025393] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.001123] [Roll: -0.001676] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.018572] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.027451] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.005708] [Roll: 0.032810] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.011730] [Roll: 0.050877] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.005213] [Roll: 0.129598] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.140328] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.133705] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.005918] [Roll: 0.109450] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.006559] [Roll: 0.050237] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084845] [Roll: 0.037179] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.013931] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003909] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093935] [Roll: -0.022026] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.051120] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.057918] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070519] [Roll: -0.064740] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054788] [Roll: -0.090423] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.118955] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044027] [Roll: -0.112028] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.090196] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035078] [Roll: -0.091277] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029251] [Roll: -0.120414] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.173656] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.202727] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024420] [Roll: -0.206328] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011123] [Roll: -0.200642] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004373] [Roll: -0.207392] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.188424] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.012713] [Roll: -0.087609] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037943] [Roll: -0.002597] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052335] [Roll: 0.020722] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004720] [Roll: 0.057367] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011298] [Roll: 0.113726] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004763] [Roll: 0.113726] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024196] [Roll: 0.120484] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.104877] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.015524] [Roll: 0.046354] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.017644] [Roll: -0.065671] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.159332] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.034790] [Roll: -0.198486] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027638] [Roll: -0.177031] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056091] [Roll: -0.047590] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078379] [Roll: -0.002702] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076331] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063095] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071715] [Roll: -0.013267] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073567] [Roll: -0.033308] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057575] [Roll: -0.043137] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.019236] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.012907] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056635] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063073] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064015] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.043137] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.042479] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.036774] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063981] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070499] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069161] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058278] [Roll: -0.018516] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.005515] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050073] [Roll: -0.015846] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036905] [Roll: -0.075106] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030030] [Roll: -0.166584] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.017267] [Roll: -0.275735] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: -0.366781] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.007656] [Roll: -0.334268] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033739] [Roll: -0.066920] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065472] [Roll: -0.032874] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062894] [Roll: -0.031323] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058397] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070055] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053578] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.035294] [Yaw: 0.006605] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.038316] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038715] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031122] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024950] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.022283] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033633] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041498] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044448] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050725] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044156] [Roll: -0.043137] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053315] [Roll: -0.017693] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063105] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069698] [Roll: -0.006953] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070524] [Roll: -0.021730] [Yaw: 0.005915] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061686] [Roll: -0.058136] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073921] [Roll: -0.088724] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.184414] [Yaw: 0.005484] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070038] [Roll: -0.087100] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033492] [Roll: 0.090175] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.003167] [Roll: 0.235356] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027541] [Roll: 0.331979] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033554] [Roll: 0.241790] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.016649] [Roll: 0.089833] [Yaw: -0.000740] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.001259] [Roll: 0.058315] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.007707] [Roll: 0.150367] [Yaw: -0.002907] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.014798] [Roll: 0.049094] [Yaw: 0.002719] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.005459] [Roll: 0.041600] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.014953] [Roll: 0.118390] [Yaw: 0.001225] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041925] [Roll: 0.206954] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.000872] [Roll: 0.017429] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.008297] [Roll: -0.008297] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.020317] [Roll: -0.007489] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033717] [Roll: -0.003922] [Yaw: -0.000788] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046257] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065619] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039658] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.019535] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.022039] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060919] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021745] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037456] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.001021] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063911] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043856] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062741] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061354] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054430] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043256] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049097] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059382] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.000501] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029201] [Roll: -0.010166] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039451] [Roll: -0.125863] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.207314] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043035] [Roll: -0.149374] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.000336] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.046883] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039885] [Roll: 0.094499] [Yaw: -0.002295] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059805] [Roll: 0.133662] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.023189] [Roll: 0.139663] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.017680] [Roll: 0.063878] [Yaw: 0.000665] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030620] [Roll: 0.008596] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030518] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.020748] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039399] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053981] [Roll: 0.003922] [Yaw: -0.001500] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.042655] [Roll: -0.000121] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044111] [Roll: -0.006698] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076022] [Roll: -0.010252] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.040647] [Roll: -0.052579] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049923] [Roll: -0.029565] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055463] [Roll: -0.001684] [Yaw: -0.007282] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053097] [Roll: 0.011765] [Yaw: -0.013881] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066132] [Roll: 0.011765] [Yaw: -0.026916] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055763] [Roll: 0.011765] [Yaw: -0.027451] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.007471] [Yaw: -0.027451] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053177] [Roll: 0.003922] [Yaw: -0.025255] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060577] [Roll: 0.003045] [Yaw: -0.017855] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072450] [Roll: -0.002891] [Yaw: -0.005982] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037658] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.045522] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057052] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044378] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032277] [Roll: 0.001508] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036566] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036618] [Roll: 0.003922] [Yaw: 0.005857] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.018682] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.282353] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.005838] [Throttle:0.252721] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.216644] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.001331] [Throttle:0.180536] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.146716] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.127577] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056855] [Roll: 0.011272] [Yaw: -0.000246] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069397] [Roll: 0.031163] [Yaw: 0.003922] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.028176] [Roll: 0.070605] [Yaw: 0.002851] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081932] [Roll: 0.144520] [Yaw: -0.003869] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095468] [Roll: 0.066408] [Yaw: -0.010479] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.157937] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180012] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173359] [Roll: 0.047868] [Yaw: -0.014877] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.167326] [Roll: 0.041836] [Yaw: -0.015703] [Throttle:0.125490] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158722] [Roll: 0.034732] [Yaw: 0.007109] [Throttle:0.126053] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083695] [Roll: 0.014270] [Yaw: 0.123060] [Throttle:0.146515] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104398] [Roll: 0.005787] [Yaw: 0.077480] [Throttle:0.172930] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103947] [Roll: -0.000968] [Yaw: 0.024599] [Throttle:0.180392] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: 0.011408] [Throttle:0.184136] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: 0.011771] [Throttle:0.198685] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097392] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.091294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095338] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086393] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052230] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063751] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086227] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087725] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076269] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053888] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055230] [Roll: -0.015314] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084369] [Roll: -0.038208] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059363] [Roll: -0.050711] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052321] [Roll: -0.063987] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061572] [Roll: -0.087850] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.098039] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073039] [Roll: -0.085294] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090200] [Roll: -0.050927] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096742] [Roll: 0.034122] [Yaw: -0.003922] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056403] [Roll: 0.097243] [Yaw: -0.008548] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024054] [Roll: 0.109029] [Yaw: -0.011765] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031977] [Roll: 0.071751] [Yaw: -0.006464] [Throttle:0.219608] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073220] [Roll: 0.034649] [Yaw: 0.015421] [Throttle:0.220038] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035917] [Roll: 0.015998] [Yaw: 0.121112] [Throttle:0.232472] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047112] [Roll: 0.006850] [Yaw: 0.086116] [Throttle:0.250040] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.032338] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069579] [Roll: 0.003922] [Yaw: 0.038652] [Throttle:0.272267] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083432] [Roll: 0.003922] [Yaw: 0.051865] [Throttle:0.302549] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064016] [Roll: 0.003922] [Yaw: -0.006029] [Throttle:0.316376] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067557] [Roll: 0.003922] [Yaw: 0.040468] [Throttle:0.336124] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087803] [Roll: 0.001197] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096704] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089718] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083136] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.010395] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086975] [Roll: -0.003922] [Yaw: -0.007143] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: -0.001219] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: -0.003122] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084652] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085973] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.003922] [Yaw: -0.001423] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089430] [Roll: -0.003922] [Yaw: 0.003156] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082668] [Roll: -0.003922] [Yaw: -0.003606] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.001458] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.360784] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.005886] [Throttle:0.352938] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.032627] [Throttle:0.326744] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.009515] [Throttle:0.303632] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087981] [Roll: -0.003922] [Yaw: 0.001706] [Throttle:0.298039] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086423] [Roll: -0.003922] [Yaw: -0.007398] [Throttle:0.282947] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011938] [Throttle:0.264110] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.001578] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.010507] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.004974] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.002716] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.010242] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.004422] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.009682] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052690] [Roll: -0.152239] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.012327] [Roll: -0.472261] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.025143] [Roll: -0.420997] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052776] [Roll: -0.146011] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083393] [Roll: -0.040018] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056324] [Roll: -0.149667] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.034211] [Roll: -0.270588] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027618] [Roll: -0.270588] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.229223] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043860] [Roll: -0.191072] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064556] [Roll: -0.108434] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070625] [Roll: 0.003848] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055657] [Roll: 0.043286] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029397] [Roll: 0.174586] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055766] [Roll: 0.082379] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071750] [Roll: 0.007552] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061293] [Roll: -0.002953] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.047395] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.080996] [Roll: 0.020147] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.142599] [Roll: 0.042116] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098065] [Roll: 0.003944] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.113973] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127935] [Roll: 0.254717] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106864] [Roll: 0.168534] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064612] [Roll: 0.054921] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057941] [Roll: 0.171177] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052016] [Roll: 0.135626] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033330] [Roll: 0.035274] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.092540] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.125200] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.029162] [Roll: 0.076649] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041581] [Roll: 0.149768] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089684] [Roll: 0.005458] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070014] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055104] [Roll: -0.001860] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060282] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069538] [Roll: -0.029762] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067206] [Roll: -0.078162] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.044037] [Roll: -0.090196] [Yaw: -0.010865] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051148] [Roll: -0.090196] [Yaw: -0.003810] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069961] [Roll: -0.090196] [Yaw: 0.008732] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079776] [Roll: -0.069130] [Yaw: 0.048631] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086933] [Roll: -0.031344] [Yaw: 0.071247] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.011765] [Yaw: 0.035556] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085142] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.006398] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011761] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081043] [Roll: 0.018298] [Yaw: -0.005232] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050690] [Roll: 0.130427] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031862] [Roll: 0.125962] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.048938] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.023210] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055395] [Roll: -0.047459] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.128296] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064060] [Roll: -0.186921] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063447] [Roll: -0.171813] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095119] [Roll: -0.032458] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085725] [Roll: -0.001136] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.003922] [Yaw: 0.000599] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.002461] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079432] [Roll: -0.016147] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066810] [Roll: -0.035079] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054099] [Roll: -0.035294] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046404] [Roll: -0.039871] [Yaw: -0.000655] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054615] [Roll: -0.046007] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079948] [Roll: -0.052340] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104123] [Roll: -0.058384] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.099505] [Roll: -0.058824] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.220690] [Roll: -0.058824] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.355206] [Roll: -0.045852] [Yaw: -0.007165] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.360563] [Roll: -0.028681] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058887] [Roll: -0.034966] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068269] [Roll: -0.016445] [Yaw: -0.005482] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088767] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108600] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093803] [Roll: -0.007780] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057119] [Roll: -0.001023] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024183] [Roll: 0.005011] [Yaw: -0.002832] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.003509] [Roll: 0.014075] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.028595] [Roll: 0.193859] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.125139] [Roll: 0.242603] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.044568] [Roll: 0.126968] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.006393] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.012695] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072639] [Roll: 0.003922] [Yaw: 0.019920] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035490] [Roll: 0.003922] [Yaw: 0.026111] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033308] [Roll: 0.003922] [Yaw: 0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039812] [Roll: 0.003922] [Yaw: 0.018416] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033833] [Roll: 0.003922] [Yaw: 0.008663] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.023363] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039343] [Roll: 0.003922] [Yaw: 0.003112] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068850] [Roll: 0.003922] [Yaw: -0.002790] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058125] [Roll: -0.001540] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011285] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062262] [Roll: -0.003922] [Yaw: -0.017351] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086981] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048522] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037673] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.011339] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.005324] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: -0.001739] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.009972] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.016118] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.016348] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.009878] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003977] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.010613] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.008562] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.004589] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.010467] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.006534] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.007705] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003113] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003681] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.007421] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.008785] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011434] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004721] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009253] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015311] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.017803] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011505] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.005207] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009258] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004781] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.000368] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.012143] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.018328] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.014387] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.017114] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.022520] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.004445] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.016784] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.014747] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.015312] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.027269] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.006585] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009201] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.001987] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.015518] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.002584] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.010417] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.009727] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.001916] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.003928] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.009696] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.002000] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.002344] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.003647] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.008587] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: -0.023482] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059278] [Roll: -0.125592] [Yaw: -0.022654] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060016] [Roll: -0.110009] [Yaw: -0.019608] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056910] [Roll: 0.002200] [Yaw: -0.021329] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144949] [Roll: -0.005142] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.335504] [Roll: -0.011097] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.338538] [Roll: 0.037100] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.327966] [Roll: 0.115387] [Yaw: -0.027451] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.306212] [Roll: 0.152810] [Yaw: -0.023595] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.252384] [Roll: 0.172888] [Yaw: -0.012346] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173615] [Roll: 0.201428] [Yaw: 0.019629] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160285] [Roll: 0.206345] [Yaw: 0.088199] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153633] [Roll: 0.186390] [Yaw: 0.061591] [Throttle:0.258824] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112699] [Roll: 0.167067] [Yaw: -0.004415] [Throttle:0.235828] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.103401] [Yaw: -0.015155] [Throttle:0.215155] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.042064] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083439] [Roll: 0.023801] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.036924] [Roll: 0.009320] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050173] [Roll: -0.010554] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067970] [Roll: -0.023091] [Yaw: -0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079307] [Roll: -0.041841] [Yaw: 0.000875] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077958] [Roll: -0.050980] [Yaw: 0.012712] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.042159] [Yaw: 0.024019] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086487] [Roll: -0.031302] [Yaw: 0.023459] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095294] [Roll: -0.019214] [Yaw: 0.011371] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084628] [Roll: -0.005314] [Yaw: -0.005314] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059478] [Roll: -0.011601] [Yaw: -0.011601] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089756] [Roll: -0.011765] [Yaw: -0.017951] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064738] [Roll: -0.011765] [Yaw: -0.015445] [Throttle:0.178946] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.011765] [Yaw: -0.003913] [Throttle:0.151629] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.037362] [Roll: -0.010386] [Yaw: 0.009697] [Throttle:0.139798] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059522] [Roll: 0.003572] [Yaw: -0.011765] [Throttle:0.124792] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082964] [Roll: -0.008149] [Yaw: -0.011765] [Throttle:0.101350] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.256008] [Roll: -0.059763] [Yaw: -0.007401] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.373859] [Roll: -0.109541] [Yaw: -0.003922] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.342414] [Roll: -0.133081] [Yaw: -0.003188] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.287884] [Roll: -0.163376] [Yaw: 0.002871] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.273379] [Roll: -0.168627] [Yaw: 0.008974] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.275017] [Roll: -0.168627] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.282120] [Roll: -0.179693] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.286275] [Roll: -0.174474] [Yaw: 0.009239] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.252341] [Roll: -0.110391] [Yaw: 0.005336] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097118] [Roll: 0.011458] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078391] [Roll: 0.005215] [Yaw: 0.011765] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058365] [Roll: 0.014685] [Yaw: 0.022528] [Throttle:0.094118] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041781] [Roll: 0.015008] [Yaw: 0.050450] [Throttle:0.068819] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032399] [Roll: 0.011765] [Yaw: 0.063771] [Throttle:0.035057] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032767] [Roll: 0.013537] [Yaw: 0.065912] [Throttle:0.006071] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.019206] [Yaw: 0.088588] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.013368] [Yaw: 0.065237] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060134] [Roll: 0.011765] [Yaw: 0.049670] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081644] [Roll: 0.008769] [Yaw: 0.025164] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102756] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096536] [Roll: 0.002110] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193648] [Roll: -0.025636] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166318] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093201] [Roll: -0.032278] [Yaw: 0.000906] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.068273] [Roll: -0.018001] [Yaw: 0.000463] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.091671] [Roll: 0.003922] [Yaw: -0.005396] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096132] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066345] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.006656] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055182] [Roll: 0.003922] [Yaw: -0.007563] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053401] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053721] [Roll: 0.003922] [Yaw: -0.006662] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.000253] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053595] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052973] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.009387] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052455] [Roll: 0.003922] [Yaw: 0.021083] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058752] [Roll: 0.003922] [Yaw: 0.027380] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053072] [Roll: 0.003922] [Yaw: 0.015948] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.007692] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053546] [Roll: 0.003922] [Yaw: 0.001356] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: -0.000384] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.003922] [Yaw: 0.011541] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052073] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.005161] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.000641] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.000864] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.002181] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043525] [Roll: -0.093002] [Yaw: -0.011377] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.062708] [Roll: -0.452621] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.024756] [Roll: -0.314069] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063624] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056678] [Roll: 0.003289] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160928] [Roll: -0.008295] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.321216] [Roll: -0.026105] [Yaw: -0.016545] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.406961] [Roll: -0.035294] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.404090] [Roll: -0.029155] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.366164] [Roll: -0.002900] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.194394] [Roll: 0.024583] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126396] [Roll: 0.016323] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.116789] [Roll: 0.011765] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137541] [Roll: 0.013797] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168060] [Roll: 0.019608] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.215071] [Roll: 0.019608] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.218048] [Roll: 0.025090] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132488] [Roll: 0.048251] [Yaw: -0.016141] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.036526] [Roll: 0.074510] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.177395] [Roll: 0.075435] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.197516] [Roll: 0.095556] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.052255] [Roll: 0.057282] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.022566] [Roll: 0.042989] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.098246] [Roll: 0.079032] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.141645] [Roll: 0.154101] [Yaw: -0.012345] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072460] [Roll: 0.167077] [Yaw: -0.018833] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.136367] [Yaw: -0.024985] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.232681] [Roll: 0.080768] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.379689] [Roll: 0.039333] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.442293] [Roll: 0.025446] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.362564] [Roll: 0.007047] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.244372] [Roll: 0.003922] [Yaw: -0.002535] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.139300] [Roll: 0.000459] [Yaw: 0.046391] [Throttle:0.017313] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078760] [Roll: -0.003922] [Yaw: 0.065046] [Throttle:0.041012] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065537] [Roll: -0.003922] [Yaw: -0.012828] [Throttle:0.049319] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059002] [Roll: -0.003832] [Yaw: 0.026646] [Throttle:0.063192] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071294] [Roll: 0.002314] [Yaw: -0.028666] [Throttle:0.093921] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089537] [Roll: 0.003922] [Yaw: -0.018092] [Throttle:0.116988] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149499] [Roll: 0.003922] [Yaw: -0.016030] [Throttle:0.143653] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.214843] [Roll: 0.005988] [Yaw: -0.029095] [Throttle:0.182880] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168677] [Roll: 0.011759] [Yaw: -0.011783] [Throttle:0.211734] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074171] [Roll: 0.003922] [Yaw: -0.004260] [Throttle:0.211765] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077508] [Roll: 0.004644] [Yaw: -0.005983] [Throttle:0.212487] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.191291] [Roll: 0.013375] [Yaw: 0.046687] [Throttle:0.221755] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.280075] [Roll: 0.033863] [Yaw: -0.007950] [Throttle:0.249073] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.215262] [Roll: 0.106306] [Yaw: -0.006302] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.115755] [Roll: 0.355028] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.081648] [Roll: 0.578638] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.356863] [Roll: 0.574235] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.356863] [Roll: 0.220774] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: -0.098234] [Roll: 0.057787] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.021144] [Roll: 0.000768] [Yaw: -0.000768] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033350] [Roll: -0.002261] [Yaw: 0.002261] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.119489] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.306211] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.338159] [Roll: -0.000754] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.291502] [Roll: -0.035078] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.226154] [Roll: -0.095414] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.193944] [Roll: -0.127625] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.186823] [Roll: -0.193424] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.273552] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.309804] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.175230] [Roll: -0.284068] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.140631] [Roll: -0.186035] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107591] [Roll: -0.040016] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085697] [Roll: 0.020378] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087940] [Roll: 0.126619] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106537] [Roll: 0.310347] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069715] [Roll: 0.353306] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061119] [Roll: 0.345767] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.319378] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: 0.292549] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.059970] [Roll: 0.263707] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071982] [Roll: 0.191638] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.048011] [Roll: 0.081076] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030855] [Roll: -0.075691] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032315] [Roll: -0.260504] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.046638] [Roll: -0.439473] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069654] [Roll: -0.157524] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061126] [Roll: -0.040045] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.002354] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055466] [Roll: -0.023727] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074222] [Roll: -0.073742] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120659] [Roll: -0.005286] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.163727] [Roll: 0.037256] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173704] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.165831] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.183626] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.170917] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.174380] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.185765] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.195022] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.191856] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.169178] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181628] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181753] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.107770] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.046080] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.086676] [Roll: 0.035562] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069443] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052257] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035556] [Roll: 0.026438] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089833] [Roll: 0.019653] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109045] [Roll: 0.007042] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103224] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083317] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067197] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073675] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.089051] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129518] [Roll: -0.011818] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.177967] [Roll: -0.034216] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.217397] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223529] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.218456] [Roll: -0.050980] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.226631] [Roll: -0.040035] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.224777] [Roll: -0.021263] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.001689] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160306] [Roll: 0.011924] [Yaw: -0.007923] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109649] [Roll: 0.031877] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065349] [Roll: 0.049663] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058651] [Roll: 0.042965] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051385] [Roll: 0.035699] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.028851] [Yaw: -0.005321] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064326] [Roll: 0.027451] [Yaw: -0.008370] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168211] [Roll: 0.074301] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.307936] [Roll: 0.139558] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.339900] [Roll: 0.144460] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.326852] [Roll: 0.137936] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.205922] [Roll: 0.137255] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132856] [Roll: 0.104544] [Yaw: -0.006313] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.105785] [Roll: 0.070346] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076826] [Roll: 0.045677] [Yaw: -0.006573] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.039309] [Roll: 0.031279] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057696] [Roll: 0.012892] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085857] [Roll: -0.001752] [Yaw: -0.005006] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031800] [Roll: -0.025157] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.011925] [Roll: -0.087316] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.015833] [Roll: -0.148581] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.004827] [Roll: -0.184993] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.030138] [Roll: -0.203976] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.202167] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058989] [Roll: -0.181044] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085434] [Roll: -0.117646] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111357] [Roll: -0.047170] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155919] [Roll: -0.001489] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085150] [Roll: 0.033896] [Yaw: -0.003922] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103022] [Roll: 0.062852] [Yaw: -0.010811] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.188023] [Roll: 0.054932] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.227296] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.217741] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.191453] [Roll: 0.048941] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.234883] [Roll: 0.036532] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.210278] [Roll: 0.029507] [Yaw: -0.011765] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.211190] [Roll: 0.027451] [Yaw: -0.022955] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.229770] [Roll: 0.027451] [Yaw: -0.035294] [Throttle:0.260341] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.236116] [Roll: 0.024352] [Yaw: -0.035294] [Throttle:0.277609] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.223552] [Roll: 0.011787] [Yaw: -0.035294] [Throttle:0.290174] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.199691] [Roll: 0.005805] [Yaw: -0.005496] [Throttle:0.290196] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.196355] [Roll: -0.004475] [Yaw: 0.037507] [Throttle:0.298592] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.205001] [Roll: -0.016766] [Yaw: 0.034159] [Throttle:0.315885] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.188514] [Roll: -0.028745] [Yaw: -0.028825] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.035294] [Yaw: 0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.035294] [Yaw: 0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061609] [Roll: -0.035294] [Yaw: -0.017335] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070959] [Roll: -0.035294] [Yaw: -0.018866] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.075985] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.035294] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076748] [Roll: -0.012873] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056127] [Roll: 0.010785] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062293] [Roll: 0.035551] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121646] [Roll: 0.108401] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144518] [Roll: 0.274225] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.138630] [Roll: 0.271963] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111072] [Roll: 0.253133] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093421] [Roll: 0.229541] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108866] [Roll: 0.203313] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151754] [Roll: 0.151161] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.139445] [Roll: 0.132697] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.163483] [Roll: 0.066464] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.169419] [Roll: 0.021191] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.148648] [Roll: 0.001899] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.114491] [Roll: -0.003794] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155171] [Roll: -0.009842] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181566] [Roll: -0.046268] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: -0.074510] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: -0.076843] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: -0.089668] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.173878] [Roll: -0.084103] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153333] [Roll: -0.090000] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.135272] [Roll: -0.096056] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127926] [Roll: -0.090196] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.099641] [Roll: -0.090196] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085500] [Roll: -0.062020] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060834] [Roll: -0.010859] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.042157] [Roll: 0.052615] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054028] [Roll: 0.122358] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024551] [Roll: 0.175417] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070847] [Roll: 0.184314] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.115049] [Roll: 0.173415] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.112339] [Roll: 0.168628] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100334] [Roll: 0.166600] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127068] [Roll: 0.154421] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081530] [Roll: 0.030820] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085702] [Roll: -0.033003] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: -0.070854] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088092] [Roll: -0.100718] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.129412] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.129412] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088814] [Roll: -0.110029] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127961] [Roll: -0.073512] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145098] [Roll: -0.051852] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145098] [Roll: -0.032745] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145225] [Roll: -0.003033] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152074] [Roll: 0.044909] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: 0.043052] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.150451] [Roll: 0.032804] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145701] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151702] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.148115] [Roll: 0.027451] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.135306] [Roll: 0.043771] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.127419] [Roll: 0.072517] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.145957] [Roll: 0.091571] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.179761] [Roll: 0.145656] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.164663] [Roll: 0.162767] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160246] [Roll: 0.168628] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.170305] [Roll: 0.161917] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.177447] [Roll: 0.130418] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.189138] [Roll: 0.048584] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.229274] [Roll: 0.006241] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.189937] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109269] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067502] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074099] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.009404] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.078386] [Roll: -0.010473] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097584] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090778] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083972] [Roll: -0.022593] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069175] [Roll: -0.040629] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.053754] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062153] [Roll: -0.058824] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.058824] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.058824] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085665] [Roll: -0.053246] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082762] [Roll: -0.028679] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090200] [Roll: 0.014383] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.124074] [Roll: 0.066013] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136777] [Roll: 0.142230] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098929] [Roll: 0.132323] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108380] [Roll: 0.102136] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.078820] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133475] [Roll: 0.067366] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159841] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153898] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158455] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.178349] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.190552] [Roll: 0.049091] [Yaw: -0.013654] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160785] [Roll: 0.043137] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166914] [Roll: 0.043137] [Yaw: -0.013478] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.132800] [Roll: 0.034180] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.117202] [Roll: 0.021791] [Yaw: -0.014595] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.014883] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.032523] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120935] [Roll: 0.035294] [Yaw: -0.014168] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.110078] [Roll: 0.042589] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096498] [Roll: 0.050980] [Yaw: -0.014111] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.018867] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.012770] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.072322] [Roll: 0.050980] [Yaw: -0.013953] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070139] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081743] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.094480] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.075106] [Roll: 0.050881] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.159567] [Roll: 0.036804] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.207102] [Roll: 0.035294] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.207671] [Roll: 0.031329] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.189288] [Roll: 0.015974] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.181610] [Roll: -0.004598] [Yaw: -0.018932] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155589] [Roll: -0.011103] [Yaw: -0.012427] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.163570] [Roll: -0.027707] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.104306] [Roll: -0.043870] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060315] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088248] [Roll: -0.045086] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079271] [Roll: -0.037675] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065543] [Roll: -0.008394] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.049544] [Roll: 0.009445] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.002982] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003341] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.014918] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.032052] [Roll: 0.028810] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056258] [Roll: 0.040535] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.105206] [Roll: 0.045008] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144854] [Roll: 0.011968] [Yaw: -0.011765] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151089] [Roll: 0.005773] [Yaw: -0.017756] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158162] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.158359] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151181] [Roll: 0.004274] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121910] [Roll: 0.010128] [Yaw: -0.019608] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136425] [Roll: 0.034464] [Yaw: -0.015068] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106943] [Roll: 0.047442] [Yaw: -0.008226] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.037426] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058317] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097961] [Roll: 0.027451] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.060860] [Roll: 0.015058] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056216] [Roll: 0.085066] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102897] [Roll: 0.130383] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.130463] [Roll: 0.110086] [Yaw: -0.003922] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109755] [Roll: 0.062696] [Yaw: -0.011798] [Throttle:0.337255] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076117] [Roll: 0.027451] [Yaw: -0.039473] [Throttle:0.335648] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.109410] [Roll: 0.027451] [Yaw: -0.126034] [Throttle:0.302355] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102543] [Roll: 0.027451] [Yaw: -0.086932] [Throttle:0.264491] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081814] [Roll: 0.019339] [Yaw: -0.034217] [Throttle:0.250980] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069281] [Roll: 0.014379] [Yaw: -0.045754] [Throttle:0.245751] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.019608] [Yaw: -0.103184] [Throttle:0.228300] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.019653] [Yaw: -0.011742] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.044017] [Yaw: 0.000440] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061102] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056586] [Roll: 0.067797] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069046] [Roll: 0.088524] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081158] [Roll: 0.040075] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.117545] [Roll: 0.035294] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137734] [Roll: 0.043616] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136733] [Roll: 0.090017] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.164168] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.184303] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.196912] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.215350] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113076] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.101962] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.103371] [Roll: 0.223529] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.099080] [Roll: 0.222489] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.105825] [Roll: 0.215629] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098746] [Roll: 0.208550] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.197591] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087266] [Roll: 0.177793] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.075967] [Roll: 0.137467] [Yaw: 0.005379] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082285] [Roll: 0.036388] [Yaw: 0.011696] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071365] [Roll: 0.007825] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.008278] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.062244] [Roll: -0.016187] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051788] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.057605] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.053206] [Roll: -0.010599] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079948] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.092360] [Roll: -0.006592] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.052171] [Roll: -0.011765] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065890] [Roll: -0.011765] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050806] [Roll: -0.027625] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.055370] [Roll: -0.055681] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.070946] [Roll: -0.091628] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084115] [Roll: -0.142541] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.096478] [Roll: -0.179630] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120545] [Roll: -0.173061] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.140219] [Roll: -0.154218] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155922] [Roll: -0.135765] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168281] [Roll: -0.129585] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.157272] [Roll: -0.101024] [Yaw: 0.006087] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144122] [Roll: -0.068148] [Yaw: 0.008331] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.053255] [Yaw: 0.011765] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136036] [Roll: -0.063699] [Yaw: 0.010546] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129670] [Roll: -0.089165] [Yaw: 0.004179] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.129412] [Roll: -0.084280] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.124894] [Roll: -0.082353] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: -0.102953] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.119590] [Roll: -0.137255] [Yaw: 0.003922] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.137255] [Yaw: 0.005627] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.137255] [Yaw: 0.018466] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065744] [Roll: -0.065282] [Yaw: 0.025606] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.033825] [Roll: -0.038848] [Yaw: 0.027451] [Throttle:0.203922] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024980] [Roll: -0.027236] [Yaw: -0.012839] [Throttle:0.198550] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.040098] [Roll: -0.010564] [Yaw: -0.092598] [Throttle:0.181630] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065132] [Roll: -0.003922] [Yaw: -0.105882] [Throttle:0.143564] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024270] [Roll: -0.003922] [Yaw: -0.105882] [Throttle:0.102701] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.009688] [Yaw: -0.030925] [Throttle:0.080741] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.038350] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.071176] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.010531] [Yaw: -0.002688] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003429] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.016465] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084631] [Roll: 0.028547] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.125512] [Roll: 0.041669] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.196810] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.185277] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.045715] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.046649] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.178228] [Roll: 0.054632] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.144869] [Roll: 0.074601] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083781] [Roll: 0.099037] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.095275] [Roll: 0.072506] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123689] [Roll: 0.044338] [Yaw: 0.003922] [Throttle:0.074510] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123773] [Roll: 0.030800] [Yaw: 0.002798] [Throttle:0.071701] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054951] [Roll: 0.007860] [Yaw: -0.002937] [Throttle:0.057363] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.058536] [Roll: -0.001211] [Yaw: 0.006344] [Throttle:0.039504] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063526] [Roll: -0.003922] [Yaw: 0.005484] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067114] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088405] [Roll: -0.003026] [Yaw: -0.003026] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076764] [Roll: 0.002794] [Yaw: 0.002794] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.069290] [Roll: 0.003922] [Yaw: 0.009142] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.087054] [Roll: 0.012077] [Yaw: 0.015842] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.108928] [Roll: 0.016562] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106176] [Roll: 0.009877] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.083226] [Roll: 0.004140] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076611] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106983] [Roll: -0.024943] [Yaw: 0.019608] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.147484] [Roll: -0.058824] [Yaw: 0.017222] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.057523] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152941] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.142427] [Roll: -0.045723] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.046081] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126060] [Roll: -0.055179] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.079780] [Roll: -0.072534] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.063910] [Roll: -0.079809] [Yaw: 0.011765] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.054880] [Roll: -0.082353] [Yaw: 0.019652] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.082353] [Yaw: 0.040435] [Throttle:0.031373] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.081056] [Yaw: 0.070558] [Throttle:0.030075] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.051313] [Roll: -0.074344] [Yaw: 0.089531] [Throttle:0.023280] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.076020] [Roll: -0.061990] [Yaw: 0.040116] [Throttle:0.004749] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.054553] [Yaw: 0.023180] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085262] [Roll: -0.036437] [Yaw: 0.022517] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.085591] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.056166] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.074706] [Roll: -0.011765] [Yaw: 0.023497] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.011765] [Yaw: 0.017231] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097059] [Roll: -0.013725] [Yaw: 0.010784] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090681] [Roll: -0.026480] [Yaw: 0.004407] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.084982] [Roll: -0.032665] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.077829] [Roll: -0.035294] [Yaw: -0.000603] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.067285] [Roll: -0.035294] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.065771] [Roll: -0.035294] [Yaw: -0.006237] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.088686] [Roll: -0.038461] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.126184] [Roll: -0.057210] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151721] [Roll: -0.069978] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.165127] [Roll: -0.070167] [Yaw: -0.020450] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.060577] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.050980] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.050980] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.045403] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168628] [Roll: -0.043137] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.171638] [Roll: -0.031095] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.167971] [Roll: -0.004965] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.136453] [Roll: 0.021211] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123833] [Roll: 0.046453] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111445] [Roll: 0.116783] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098981] [Roll: 0.166745] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.184314] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.093216] [Roll: 0.183710] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.125230] [Roll: 0.177307] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168503] [Roll: 0.165302] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.122247] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.200865] [Roll: 0.070887] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.230025] [Roll: 0.033946] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.222239] [Roll: 0.026967] [Yaw: -0.027612] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168767] [Roll: 0.006915] [Yaw: -0.034296] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.106395] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.061971] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024734] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.013735] [Roll: 0.003922] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.006434] [Roll: 0.014582] [Yaw: -0.024633] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.031750] [Roll: 0.035510] [Yaw: -0.015632] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.081903] [Roll: 0.086882] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133162] [Roll: 0.162284] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.161083] [Roll: 0.173453] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.186817] [Roll: 0.171923] [Yaw: -0.016312] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.215756] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.242369] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.208210] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.225849] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.235491] [Roll: 0.168628] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.245853] [Roll: 0.166214] [Yaw: -0.022021] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.281040] [Roll: 0.156872] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.293685] [Roll: 0.135526] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.282526] [Roll: 0.090888] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.270574] [Roll: 0.062724] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.264866] [Roll: 0.038257] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.269587] [Roll: 0.001169] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.246506] [Roll: -0.062304] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.225426] [Roll: -0.105335] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.212387] [Roll: -0.124868] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.210579] [Roll: -0.129412] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.222060] [Roll: -0.129412] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.212657] [Roll: -0.102231] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168371] [Roll: -0.046776] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.101407] [Roll: -0.001121] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.064308] [Roll: 0.006883] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.122072] [Roll: 0.020447] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.157281] [Roll: 0.079129] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151874] [Roll: 0.118982] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.202123] [Roll: 0.142060] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.348465] [Roll: 0.151832] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.341828] [Roll: 0.138558] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.376393] [Roll: 0.107908] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.398516] [Roll: 0.091186] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.415634] [Roll: 0.082353] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.427451] [Roll: 0.082353] [Yaw: -0.027961] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.427451] [Roll: 0.082353] [Yaw: -0.033458] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.422892] [Roll: 0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.422969] [Roll: 0.078992] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.442212] [Roll: 0.068184] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.510675] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.641453] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.661687] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.505489] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.357985] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.214898] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.161927] [Roll: 0.050980] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166340] [Roll: 0.112096] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172416] [Roll: 0.159984] [Yaw: -0.031506] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.237459] [Roll: 0.182750] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.477554] [Roll: 0.175598] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.403263] [Roll: 0.162091] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.229309] [Roll: 0.097527] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.262688] [Roll: 0.078989] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.327376] [Roll: 0.082353] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.311255] [Roll: 0.089658] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.269106] [Roll: 0.137828] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.262745] [Roll: 0.161530] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.265946] [Roll: 0.191036] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.274797] [Roll: 0.216515] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.293936] [Roll: 0.184616] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.175071] [Roll: 0.178048] [Yaw: -0.021185] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.273849] [Roll: 0.189790] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.370496] [Roll: 0.197947] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.369175] [Roll: 0.194838] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.423494] [Roll: 0.227430] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.454559] [Roll: 0.227794] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.409637] [Roll: 0.203805] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.267351] [Roll: 0.187551] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.188592] [Roll: 0.266310] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098808] [Roll: 0.200172] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.041232] [Roll: 0.115290] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.024086] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.013469] [Roll: 0.050980] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.043375] [Roll: 0.035175] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097535] [Roll: -0.034488] [Yaw: -0.023479] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.098039] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.151955] [Roll: -0.097175] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.251013] [Roll: -0.091348] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.415936] [Roll: -0.057376] [Yaw: -0.032140] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.446538] [Roll: 0.003604] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.358404] [Roll: 0.078287] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.342137] [Roll: 0.148779] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.346827] [Roll: 0.198149] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.357123] [Roll: 0.244048] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.350622] [Roll: 0.263546] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.318073] [Roll: 0.247272] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.323953] [Roll: 0.127247] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.301116] [Roll: 0.029792] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.243491] [Roll: -0.041384] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180512] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.168951] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.175248] [Roll: -0.082353] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.166369] [Roll: -0.067201] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.153099] [Roll: -0.054981] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.143111] [Roll: -0.037069] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137541] [Roll: 0.001920] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.111012] [Roll: 0.035413] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.164811] [Roll: 0.089136] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.273353] [Roll: 0.146866] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.305444] [Roll: 0.152215] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.270502] [Roll: 0.287690] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.297666] [Roll: 0.281307] [Yaw: -0.039571] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.280889] [Roll: 0.174367] [Yaw: -0.040857] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149353] [Roll: 0.036191] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098235] [Roll: 0.048971] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.149866] [Roll: 0.148622] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.195670] [Roll: 0.188317] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.224137] [Roll: 0.175863] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.261773] [Roll: 0.138227] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.395119] [Roll: 0.149862] [Yaw: -0.041598] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.394318] [Roll: 0.157675] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.290646] [Roll: 0.124952] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.120689] [Roll: 0.049222] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.114413] [Roll: 0.036669] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.131392] [Roll: 0.041183] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.146440] [Roll: 0.043137] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.172479] [Roll: 0.046394] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.198256] [Roll: 0.052725] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: 0.063877] [Yaw: -0.042776] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.192157] [Roll: 0.154210] [Yaw: -0.036324] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.186847] [Roll: 0.237662] [Yaw: -0.040604] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.274561] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.272876] [Yaw: -0.043137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.262745] [Yaw: -0.041422] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.263904] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.277383] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: 0.302538] [Yaw: -0.041321] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.165369] [Roll: 0.219818] [Yaw: -0.038401] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.155790] [Roll: 0.152237] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.156361] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.167612] [Roll: 0.137255] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.180563] [Roll: 0.144757] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.152639] [Roll: 0.157708] [Yaw: -0.035294] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.100409] [Roll: 0.167443] [Yaw: -0.029371] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.113565] [Roll: 0.160865] [Yaw: 0.003520] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.133504] [Roll: 0.160784] [Yaw: 0.333570] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.116298] [Roll: 0.160784] [Yaw: 0.584693] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.101768] [Roll: 0.160784] [Yaw: 0.509748] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.160784] [Yaw: 0.373648] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.102957] [Roll: 0.160784] [Yaw: 0.351464] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.121995] [Roll: 0.160358] [Yaw: 0.145689] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.128642] [Roll: 0.153711] [Yaw: 0.032692] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.123590] [Roll: 0.141298] [Yaw: -0.003678] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.097930] [Roll: 0.052155] [Yaw: -0.323799] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.468653] [T/O: false ][Cruise: false ] +[Elevator: 0.073466] [Roll: -0.021695] [Yaw: -0.582732] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.460716] [T/O: false ][Cruise: false ] +[Elevator: 0.060339] [Roll: -0.050980] [Yaw: -0.626631] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.440189] [T/O: false ][Cruise: false ] +[Elevator: 0.077071] [Roll: -0.050980] [Yaw: -0.141410] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.416531] [T/O: false ][Cruise: false ] +[Elevator: 0.077597] [Roll: -0.050980] [Yaw: 0.007008] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.394154] [T/O: false ][Cruise: false ] +[Elevator: 0.064178] [Roll: -0.054425] [Yaw: -0.347378] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.378103] [T/O: false ][Cruise: false ] +[Elevator: 0.060954] [Roll: -0.047187] [Yaw: -0.686366] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.362219] [T/O: false ][Cruise: false ] +[Elevator: 0.096876] [Roll: -0.003728] [Yaw: -0.271646] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.348106] [T/O: false ][Cruise: false ] +[Elevator: 0.062273] [Roll: 0.002040] [Yaw: -0.069795] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.337446] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.326115] [T/O: false ][Cruise: false ] +[Elevator: 0.048452] [Roll: 0.003922] [Yaw: 0.001135] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.316025] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.014583] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.308336] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.034137] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.300474] [T/O: false ][Cruise: false ] +[Elevator: 0.030964] [Roll: 0.003922] [Yaw: 0.065727] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.294842] [T/O: false ][Cruise: false ] +[Elevator: 0.039074] [Roll: 0.003922] [Yaw: 0.086133] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.290348] [T/O: false ][Cruise: false ] +[Elevator: 0.053563] [Roll: 0.003922] [Yaw: 0.149687] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.285816] [T/O: false ][Cruise: false ] +[Elevator: 0.057578] [Roll: 0.003922] [Yaw: 0.254902] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.281498] [T/O: false ][Cruise: false ] +[Elevator: 0.050961] [Roll: 0.003922] [Yaw: 0.254268] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.277922] [T/O: false ][Cruise: false ] +[Elevator: 0.044531] [Roll: 0.003922] [Yaw: 0.048532] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.274599] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.000384] [Yaw: 0.021144] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.269974] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.003922] [Yaw: 0.050708] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.264685] [T/O: false ][Cruise: false ] +[Elevator: 0.040265] [Roll: -0.003922] [Yaw: 0.048656] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.259764] [T/O: false ][Cruise: false ] +[Elevator: 0.027789] [Roll: -0.003922] [Yaw: -0.063627] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.252363] [T/O: false ][Cruise: false ] +[Elevator: 0.021139] [Roll: -0.003922] [Yaw: -0.615827] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.243956] [T/O: false ][Cruise: false ] +[Elevator: 0.055650] [Roll: -0.003922] [Yaw: -0.687233] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.235203] [T/O: false ][Cruise: false ] +[Elevator: 0.086782] [Roll: -0.003922] [Yaw: -0.315361] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.225225] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.003922] [Yaw: -0.180996] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.215183] [T/O: false ][Cruise: false ] +[Elevator: 0.091984] [Roll: -0.003922] [Yaw: -0.408993] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.205273] [T/O: false ][Cruise: false ] +[Elevator: 0.065396] [Roll: -0.003922] [Yaw: -0.004176] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.196888] [T/O: false ][Cruise: false ] +[Elevator: 0.032432] [Roll: -0.003922] [Yaw: -0.010769] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.188324] [T/O: false ][Cruise: false ] +[Elevator: 0.071794] [Roll: -0.003922] [Yaw: -0.144795] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.180990] [T/O: false ][Cruise: false ] +[Elevator: 0.081489] [Roll: -0.003922] [Yaw: -0.143403] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.176178] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.001052] [Yaw: 0.036821] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.171028] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.321001] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.167446] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.539271] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.164261] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.135190] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.161020] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.149849] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.157566] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.242837] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.154203] [T/O: false ][Cruise: false ] +[Elevator: 0.076016] [Roll: 0.003922] [Yaw: 0.200367] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.150627] [T/O: false ][Cruise: false ] +[Elevator: 0.082042] [Roll: 0.003922] [Yaw: 0.016671] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.146168] [T/O: false ][Cruise: false ] +[Elevator: 0.076005] [Roll: 0.003922] [Yaw: 0.264190] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.141100] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.139069] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.136492] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.001256] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.129976] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.074405] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.123386] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.457929] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.116533] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.119146] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.110699] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.104683] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.075851] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.098843] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.240664] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.095373] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.063228] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.092667] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.012156] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.089958] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.079052] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.088396] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.154805] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.086899] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.014896] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.085360] [T/O: false ][Cruise: false ] +[Elevator: 0.069006] [Roll: -0.003922] [Yaw: 0.029100] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.083504] [T/O: false ][Cruise: false ] +[Elevator: 0.070169] [Roll: -0.003922] [Yaw: 0.207721] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.081242] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.310622] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.079077] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.007079] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.076286] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.041746] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.073196] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.267691] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.070202] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.243267] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.066410] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.062525] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.012648] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.058769] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.386589] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.053965] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.202903] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.049311] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.008946] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.044271] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.002247] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.038712] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.010703] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.032690] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.026810] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.007536] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.020996] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.001288] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.015289] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.001256] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.008799] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.018424] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 19.000053] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.007401] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.990917] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.001015] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.979124] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.959606] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.021618] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.938742] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.105844] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.917116] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.224597] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.878153] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.080695] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.838661] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.052170] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.796982] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.182300] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.744110] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.264664] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.693707] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.018113] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.638485] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.010187] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.580299] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.002186] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.520399] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.251905] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.460295] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.388374] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.400511] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.340681] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.277607] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.216305] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.152452] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.026933] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.086632] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.172150] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 18.019783] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.526370] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.952843] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.134395] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.891006] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.832632] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.770432] [T/O: false ][Cruise: false ] +[Elevator: 0.073624] [Roll: -0.003922] [Yaw: 0.000378] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.711943] [T/O: false ][Cruise: false ] +[Elevator: 0.067115] [Roll: -0.003922] [Yaw: -0.025658] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.646893] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.321635] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.588434] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.193539] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.530462] [T/O: false ][Cruise: false ] +[Elevator: 0.069087] [Roll: -0.003922] [Yaw: -0.001502] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.473986] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.009956] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.417231] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: -0.091670] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.358829] [T/O: false ][Cruise: false ] +[Elevator: 0.069052] [Roll: -0.003922] [Yaw: -0.034933] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.303055] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.244171] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.188112] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.133253] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.079536] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 17.025780] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.971666] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.917467] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.864912] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.813110] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.761997] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.711012] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.662800] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.610893] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.559767] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.513250] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.462402] [T/O: false ][Cruise: false ] +[Elevator: 0.064616] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.412714] [T/O: false ][Cruise: false ] +[Elevator: 0.058942] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.361118] [T/O: false ][Cruise: false ] +[Elevator: 0.065368] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.314384] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.267641] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.221710] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.176104] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.130163] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.087019] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 16.044752] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.999401] [T/O: false ][Cruise: false ] +[Elevator: 0.065137] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.954762] [T/O: false ][Cruise: false ] +[Elevator: 0.059061] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.908914] [T/O: false ][Cruise: false ] +[Elevator: 0.065469] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.863927] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.820249] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.780577] [T/O: false ][Cruise: false ] +[Elevator: 0.063559] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.744273] [T/O: false ][Cruise: false ] +[Elevator: 0.060341] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.708447] [T/O: false ][Cruise: false ] +[Elevator: 0.066233] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.677544] [T/O: false ][Cruise: false ] +[Elevator: 0.059300] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.654012] [T/O: false ][Cruise: false ] +[Elevator: 0.064667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.629012] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.610472] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.594209] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.577972] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.565145] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.555385] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.545825] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.537055] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.530975] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.525150] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.519687] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.515534] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.511335] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.507243] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.504604] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.501731] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.498780] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.496488] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.494253] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.491965] [T/O: false ][Cruise: false ] +[Elevator: 0.060699] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.489732] [T/O: false ][Cruise: false ] +[Elevator: 0.063317] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.487452] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.485229] [T/O: false ][Cruise: false ] +[Elevator: 0.065122] [Roll: -0.003922] [Yaw: -0.002377] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.482484] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.479543] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.476635] [T/O: false ][Cruise: false ] +[Elevator: 0.064035] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.472759] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.468614] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.464431] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.460228] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.455861] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.451481] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.447804] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.444839] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.441722] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.438967] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.436694] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.434417] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.432141] [T/O: false ][Cruise: false ] +[Elevator: 0.065776] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.429997] [T/O: false ][Cruise: false ] +[Elevator: 0.059317] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.427878] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.425649] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.423534] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.421390] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.419394] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.418037] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.416778] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.415424] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.414270] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.413177] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.412033] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410865] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409663] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.408496] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407640] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407054] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406484] [T/O: false ][Cruise: false ] +[Elevator: 0.055036] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406280] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406530] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.406766] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407143] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.407736] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.408304] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.408863] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409334] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.409760] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410185] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410403] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410627] [T/O: false ][Cruise: false ] +[Elevator: 0.050528] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410842] [T/O: false ][Cruise: false ] +[Elevator: 0.032724] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410920] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.410990] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411061] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411074] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411077] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411079] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411077] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411070] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411064] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411070] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411085] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411100] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411121] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411157] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411193] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411224] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411254] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411282] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411307] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411324] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411340] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411354] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411361] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411366] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411377] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411378] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411376] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411374] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411372] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411371] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411375] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.029145] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.034963] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.029651] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411388] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411390] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411392] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411394] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411390] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411386] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411385] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.033523] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.031119] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411384] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411383] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411382] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411381] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411380] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.745098] [Data Ref: 15.411379] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086283] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.084997] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.084053] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083664] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083567] [T/O: false ][Cruise: false ] +[Elevator: 0.678620] [Roll: -0.089552] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083954] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.120767] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.085073] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.101813] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086399] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.101813] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.087484] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.087519] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.071784] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.086376] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.066042] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.084246] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.081446] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.078703] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.076563] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.075533] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.075605] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.076786] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.078259] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.079857] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.081532] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.082916] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083696] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083456] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.082172] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.080158] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.078020] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.075981] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.074821] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.074490] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.074783] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.075390] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.076319] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.019659] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.077312] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.127224] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.077642] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.077805] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.078020] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.078384] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.079018] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.079725] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.080631] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.081486] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.082136] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.082737] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083345] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.153698] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.083927] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.146987] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.084087] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.127224] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.081446] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.120767] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.072857] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.066042] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.054380] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.022142] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.972638] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.907484] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.825801] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.732213] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.621655] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.505844] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.379160] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.251663] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.124381] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.985701] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.844113] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.714586] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.584934] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.471848] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.376006] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.299210] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.258837] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.260597] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.317541] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.044116] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.454890] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.681219] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.988424] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.434108] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.049059] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.828327] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.834608] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.063951] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.071784] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.631683] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.095643] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.356028] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.209401] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.477501] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.238468] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.906929] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.260750] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.733709] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.314215] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.496048] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.687077] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.402615] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.978184] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.111263] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.202254] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.420113] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.462086] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.038928] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.491325] [T/O: false ][Cruise: false ] +[Elevator: -0.770527] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.669586] [T/O: false ][Cruise: false ] +[Elevator: -0.761232] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.641754] [T/O: false ][Cruise: false ] +[Elevator: -0.761232] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.652481] [T/O: false ][Cruise: false ] +[Elevator: -0.779844] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.449966] [T/O: false ][Cruise: false ] +[Elevator: -0.855171] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.344925] [T/O: false ][Cruise: false ] +[Elevator: -0.874217] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.957489] [T/O: false ][Cruise: false ] +[Elevator: -0.660524] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.084084] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.361679] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.710617] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.988419] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.038712] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.670639] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.015298] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.511414] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.024224] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.151505] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.870438] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.253279] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.370941] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.024224] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.223328] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.062103] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.245851] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.434433] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.426640] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.457108] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: 0.554079] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.029816] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: 0.660524] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.912048] [T/O: false ][Cruise: false ] +[Elevator: 0.807929] [Roll: 0.651513] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.835175] [T/O: false ][Cruise: false ] +[Elevator: 0.798545] [Roll: 0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.697144] [T/O: false ][Cruise: false ] +[Elevator: 0.807929] [Roll: 0.696814] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.913361] [T/O: false ][Cruise: false ] +[Elevator: 0.826761] [Roll: 0.733485] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.149414] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: 0.742711] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.431671] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: 0.742711] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: 0.742711] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.578705] [T/O: false ][Cruise: false ] +[Elevator: 0.715102] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.184113] [T/O: false ][Cruise: false ] +[Elevator: 0.660524] [Roll: 0.798545] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.025757] [T/O: false ][Cruise: false ] +[Elevator: 0.624629] [Roll: 0.807929] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.507324] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: 0.845680] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.761444] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: 0.874217] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.204956] [T/O: false ][Cruise: false ] +[Elevator: 0.493782] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.885040] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.941527] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.383850] [T/O: false ][Cruise: false ] +[Elevator: 0.434925] [Roll: 0.951223] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.488251] [T/O: false ][Cruise: false ] +[Elevator: 0.426640] [Roll: 0.951223] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.248169] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.951223] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.951223] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.522583] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.941527] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.349854] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.941527] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.450928] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: 0.941527] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.446014] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: 0.960939] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.765808] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.990206] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.378906] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.693542] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.667847] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.771118] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.169678] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.287720] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.943848] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.989380] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.840027] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.229797] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.165283] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.737183] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.024292] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.077148] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.801392] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.331665] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.600769] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.590393] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.239441] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.596008] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.689697] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.506104] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.084717] [T/O: false ][Cruise: false ] +[Elevator: -0.410168] [Roll: 0.990206] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.481445] [T/O: false ][Cruise: false ] +[Elevator: -0.562804] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.686340] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.638123] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.332886] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.846191] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.119080] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.137146] [T/O: false ][Cruise: false ] +[Elevator: -0.291058] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.793640] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.221985] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.258972] [T/O: false ][Cruise: false ] +[Elevator: -0.361554] [Roll: 0.990206] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.925659] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 0.990206] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.184998] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: 0.990206] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.051392] [T/O: false ][Cruise: false ] +[Elevator: -0.410168] [Roll: 0.980431] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.427856] [T/O: false ][Cruise: false ] +[Elevator: -0.434924] [Roll: 0.970675] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.572632] [T/O: false ][Cruise: false ] +[Elevator: -0.434924] [Roll: 0.970675] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.449524] [T/O: false ][Cruise: false ] +[Elevator: -0.443240] [Roll: 0.960939] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.982178] [T/O: false ][Cruise: false ] +[Elevator: -0.443240] [Roll: 0.960939] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.969482] [T/O: false ][Cruise: false ] +[Elevator: -0.443240] [Roll: 0.960939] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.645874] [T/O: false ][Cruise: false ] +[Elevator: -0.451588] [Roll: 0.960939] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.167542] [T/O: false ][Cruise: false ] +[Elevator: -0.510867] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.976563] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.030609] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.854889] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.336365] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.931850] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.641846] [T/O: false ][Cruise: false ] +[Elevator: -0.571557] [Roll: 0.883771] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.161072] [T/O: false ][Cruise: false ] +[Elevator: -0.678620] [Roll: 0.789183] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.473511] [T/O: false ][Cruise: false ] +[Elevator: -0.705946] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.112335] [T/O: false ][Cruise: false ] +[Elevator: -0.715102] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.083618] [T/O: false ][Cruise: false ] +[Elevator: -0.724282] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.625977] [T/O: false ][Cruise: false ] +[Elevator: -0.733485] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.432190] [T/O: false ][Cruise: false ] +[Elevator: -0.733485] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.287170] [T/O: false ][Cruise: false ] +[Elevator: -0.624629] [Roll: 0.751960] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.112793] [T/O: false ][Cruise: false ] +[Elevator: -0.817334] [Roll: 0.687705] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.472290] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.329895] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.409363] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.669560] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.373779] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.164825] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.627197] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.660524] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.888489] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.669560] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.501312] [T/O: false ][Cruise: false ] +[Elevator: -0.826761] [Roll: 0.669560] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.215546] [T/O: false ][Cruise: false ] +[Elevator: -0.669560] [Roll: 0.606834] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.005188] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.127224] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.956177] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.167297] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.190582] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.223840] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.676483] [T/O: false ][Cruise: false ] +[Elevator: -0.912557] [Roll: -0.385708] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.541626] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: -0.545380] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.305756] [T/O: false ][Cruise: false ] +[Elevator: 0.669560] [Roll: -0.033875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.978729] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.120767] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.055847] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.626129] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.060959] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.353573] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.328629] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.353573] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.361554] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.377622] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.401982] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.418388] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.434925] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.426640] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: 0.146987] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.410169] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.980431] [Roll: 0.361554] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.385708] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.393828] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.337718] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.678620] [Roll: -0.181120] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.572144] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852976] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852980] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852983] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852980] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852976] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852976] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852972] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852974] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852970] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852972] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852980] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852976] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852976] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852989] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852989] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852972] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852978] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852989] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852985] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852982] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852985] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852989] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852993] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.852997] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853001] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853001] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853001] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853016] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853014] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853014] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853014] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853012] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853012] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853004] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853008] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853006] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853006] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853006] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853010] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853014] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853018] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853018] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853018] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853014] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853020] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853025] [T/O: false ][Cruise: false ] +[Elevator: 0.960939] [Roll: -0.028969] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853025] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853029] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853025] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853029] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853025] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853029] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853029] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853025] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853029] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853037] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853041] [T/O: false ][Cruise: false ] +[Elevator: 0.678620] [Roll: -0.146987] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853041] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853037] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.789183] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853041] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.941527] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853039] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: -0.260750] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.931850] [Roll: -0.202254] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853031] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853027] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853027] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853027] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853027] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853035] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853050] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853050] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853050] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853039] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853039] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853050] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853046] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853043] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853037] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853037] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853041] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853052] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853048] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853052] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853060] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853052] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853052] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853058] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853058] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853065] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: -0.410168] [Roll: 0.054859] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853065] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853065] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853058] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853058] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853062] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853058] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853054] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853064] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853060] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853060] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853056] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853056] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853056] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853056] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853067] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853067] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853077] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853077] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853077] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853077] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853073] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853069] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.853071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:0.031986] [Flaps: 0.000000] [Data Ref: 18.853067] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:0.074251] [Flaps: 0.000000] [Data Ref: 18.853083] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.114138] [Flaps: 0.000000] [Data Ref: 18.853083] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.149158] [Flaps: 0.000000] [Data Ref: 18.853085] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.187649] [Flaps: 0.000000] [Data Ref: 18.853090] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.223242] [Flaps: 0.000000] [Data Ref: 18.853083] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.263648] [Flaps: 0.000000] [Data Ref: 18.853083] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.297690] [Flaps: 0.000000] [Data Ref: 18.853090] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.338202] [Flaps: 0.000000] [Data Ref: 18.853090] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.373856] [Flaps: 0.000000] [Data Ref: 18.853090] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.411660] [Flaps: 0.000000] [Data Ref: 18.853098] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.446804] [Flaps: 0.000000] [Data Ref: 18.853102] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:0.484551] [Flaps: 0.000000] [Data Ref: 18.853117] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.209401] [Throttle:0.519242] [Flaps: 0.000000] [Data Ref: 18.853127] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.558352] [Flaps: 0.000000] [Data Ref: 18.853142] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.160468] [Throttle:0.593268] [Flaps: 0.000000] [Data Ref: 18.853165] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853188] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853210] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853237] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853264] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853296] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853319] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.607492] [Flaps: 0.000000] [Data Ref: 18.853350] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.597858] [Flaps: 0.000000] [Data Ref: 18.853380] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.114377] [Throttle:0.563747] [Flaps: 0.000000] [Data Ref: 18.853415] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.195158] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853453] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853487] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853527] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853577] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853622] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853668] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853722] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853771] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.066042] [Throttle:0.544149] [Flaps: 0.000000] [Data Ref: 18.853836] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.089552] [Throttle:0.525274] [Flaps: 0.000000] [Data Ref: 18.853897] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.160469] [Throttle:0.493930] [Flaps: 0.000000] [Data Ref: 18.853977] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.488377] [Flaps: 0.000000] [Data Ref: 18.854055] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.488377] [Flaps: 0.000000] [Data Ref: 18.854130] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.488377] [Flaps: 0.000000] [Data Ref: 18.854206] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.083543] [Throttle:0.488377] [Flaps: 0.000000] [Data Ref: 18.854294] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.153698] [Throttle:0.488377] [Flaps: 0.000000] [Data Ref: 18.854397] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.195158] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854485] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854580] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854689] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854795] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854877] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.854965] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855045] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855103] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855156] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855206] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855246] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855272] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855307] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855314] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855337] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855354] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855377] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855389] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855412] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855431] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855450] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855465] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855473] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855480] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855494] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855501] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855501] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855509] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855513] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855513] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855513] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855513] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855516] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855516] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855520] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855524] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.453643] [Flaps: 0.000000] [Data Ref: 18.855530] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:0.463936] [Flaps: 0.000000] [Data Ref: 18.855541] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.114377] [Throttle:0.498654] [Flaps: 0.000000] [Data Ref: 18.855541] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.108059] [Throttle:0.532590] [Flaps: 0.000000] [Data Ref: 18.855545] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.083543] [Throttle:0.569248] [Flaps: 0.000000] [Data Ref: 18.855549] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.133748] [Throttle:0.604543] [Flaps: 0.000000] [Data Ref: 18.855553] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.639042] [Flaps: 0.000000] [Data Ref: 18.855560] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.675667] [Flaps: 0.000000] [Data Ref: 18.855564] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:0.711590] [Flaps: 0.000000] [Data Ref: 18.855574] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.253279] [Throttle:0.746397] [Flaps: 0.000000] [Data Ref: 18.855589] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.253279] [Throttle:0.781110] [Flaps: 0.000000] [Data Ref: 18.855598] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.260750] [Throttle:0.817624] [Flaps: 0.000000] [Data Ref: 18.855621] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.245851] [Throttle:0.855012] [Flaps: 0.000000] [Data Ref: 18.855654] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:0.888810] [Flaps: 0.000000] [Data Ref: 18.855690] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:0.924146] [Flaps: 0.000000] [Data Ref: 18.855736] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:0.959393] [Flaps: 0.000000] [Data Ref: 18.855799] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:0.993023] [Flaps: 0.000000] [Data Ref: 18.855871] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.855953] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856045] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856144] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856283] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856441] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856651] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.856926] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.857260] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.857645] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.858025] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.858437] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.858887] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.859297] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.859745] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.860178] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.860592] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861027] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861418] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861864] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.862242] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.862701] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.863182] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.863567] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864042] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864508] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864954] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.865383] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.865829] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866283] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866676] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867037] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867327] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.209401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867599] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867840] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.231131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.868069] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.868204] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.868149] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.867645] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866703] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.865416] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.120767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864145] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.862759] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861904] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.007337] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861521] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.861578] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.862240] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.863245] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.140336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.864645] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.866518] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.868900] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.870604] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.872385] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.874374] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.275821] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.875856] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 1.000000] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.876850] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.361554] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.877590] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.345627] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.878336] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.879780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881721] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.884399] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887724] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892038] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.895741] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.060399] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900579] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904768] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.268264] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.908018] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.911110] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: -0.874217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.913929] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.660524] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.916590] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.918066] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: -0.545380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.918453] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.917170] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.914379] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.502310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.910845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907213] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903606] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900131] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.895891] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892693] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.678620] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889959] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.941527] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889393] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.888769] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887949] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.807929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887184] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.886845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.554079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887039] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.922194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887411] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887527] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887474] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.789183] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887430] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887499] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.888105] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.209401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889442] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891644] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.894213] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.209401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.897287] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.897821] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898701] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900087] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.902468] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904312] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906153] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903351] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.902025] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.901663] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.902281] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903383] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904959] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906601] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907923] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906340] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904015] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.897482] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.894526] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892193] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891542] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892437] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892244] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891897] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -1.000000] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892334] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893621] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.895203] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896309] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896227] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.864683] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.894539] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891964] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.660524] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890583] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890221] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890190] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889679] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.888451] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.886103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.401982] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.885815] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.885368] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.884527] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883488] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882893] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.883625] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.885345] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887781] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889730] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.329846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.891130] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892385] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893797] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.895712] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.007337] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898113] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900959] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903498] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905609] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906752] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906710] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.245851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905956] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905041] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904152] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903505] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903475] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904270] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.393828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905180] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905451] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905670] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.836210] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905745] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.231131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905655] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905405] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905340] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.322011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905394] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.231131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905294] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905197] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.120767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905386] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905802] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906439] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906933] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.826761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907118] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907064] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906082] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.883771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904171] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.901350] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: -0.160468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898046] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.895367] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893291] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: -0.912557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892647] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893127] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.894480] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896225] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898460] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.377622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900398] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.019659] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.902515] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.015298] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.904778] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907064] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.908051] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: -0.306456] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907925] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.922194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906946] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906090] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: -0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906088] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: -0.696813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.906645] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907782] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.909071] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.910542] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.912134] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.322011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.913523] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.914524] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.493782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.914892] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.562804] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.914604] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.912987] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.329846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.910690] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907690] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905325] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.903673] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.902205] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.900587] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898800] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.897142] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896109] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896088] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896904] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898039] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.369570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898693] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.898319] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.896502] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.253279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.893143] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889481] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.885338] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.019659] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882320] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.019659] [Yaw: 0.298737] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.880337] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.879797] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.880239] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881002] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882019] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882862] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882715] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881878] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.880852] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.881130] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.882807] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.885166] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.024224] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.887436] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.033875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889374] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.033875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890602] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.890648] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.044116] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889816] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.889769] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.892752] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.899187] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.060399] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.905779] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.066042] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.907560] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.083543] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.901875] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.888229] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.870014] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.849981] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.044116] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.835369] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.049429] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.830765] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.054859] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.842846] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.066042] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.879509] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.083543] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.951920] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.083543] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.049049] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.196026] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.209401] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.367455] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.528067] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.575525] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.554079] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.848295] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.160645] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.044116] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.538900] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.962675] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.519453] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.421028] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.275820] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.965370] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.505833] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.283419] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.146721] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.782457] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.480968] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.183147] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.936373] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.671900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.443712] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.250280] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.014929] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.829971] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.624109] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.396618] [T/O: false ][Cruise: false ] +[Elevator: 0.536710] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.214626] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.933880] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.676708] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.054859] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.356030] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.001743] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.570015] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.116184] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.617069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.104527] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.546436] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.947510] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.314865] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.706505] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.044937] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.395622] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.739586] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.195158] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.087399] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.253279] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.440350] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.253279] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.805824] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.195158] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.232586] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: 0.077619] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.650124] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.117115] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.594620] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.075012] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.202254] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.594593] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.160468] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.164196] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.174181] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.775303] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.174181] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.437229] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.160468] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.116238] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.127224] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.851124] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.077619] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.589970] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.339268] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.181881] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.991985] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.060399] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.910519] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.083543] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.981171] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.153698] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.960621] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.146987] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.040813] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.140336] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.174675] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.077619] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.320824] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.520546] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.815826] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.242836] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.867352] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.071784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.392868] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.808846] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.336731] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.961800] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.569962] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.281242] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.233330] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.176758] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.155205] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.130753] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.998901] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.895599] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.903580] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.854683] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.938812] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.800491] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.712669] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.754601] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.278038] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.084709] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.683899] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.205605] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.613022] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.039391] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.592896] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.049429] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.165901] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.049429] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.598259] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.044116] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.993279] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.314964] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.693489] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.073013] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.360527] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.775543] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.308891] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.899818] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.407249] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.044403] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.790131] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.011174] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.542160] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.011174] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.196030] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.064346] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.976883] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.915878] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.853500] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.761108] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.774719] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.930389] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.906799] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.899857] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.983536] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.240112] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.627701] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.057251] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.161774] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.319550] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.391006] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.564835] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.829010] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.946594] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.199783] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.547623] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.861786] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.254059] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.839661] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.287262] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.921799] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.670135] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.326736] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.082947] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.669144] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.286407] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.191803] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.831970] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.723221] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.007337] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.493698] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.380020] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.255005] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.980743] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.790604] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.497665] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.033737] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.561005] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.002441] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.214417] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.339142] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.490906] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.480133] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.437485] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.360519] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.105026] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.749634] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.324875] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.789597] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.489273] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.877457] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.154968] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.303711] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.457489] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.524811] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.597046] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.767181] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.860321] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.034332] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.290527] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.635376] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.983368] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.015298] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.019659] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.905518] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.491058] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.345093] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.173676] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.933289] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.876923] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.912537] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.380768] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.987457] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.194489] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.475006] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.031952] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.864746] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.252289] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.625580] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.272217] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.741211] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.435760] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.556519] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.028969] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.424072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.432739] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.565948] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.915466] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.378845] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.726868] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.242706] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.871887] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.647095] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.585602] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.523834] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.861969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.169159] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.996063] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.493652] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.960297] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.631897] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.958496] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.647614] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.580170] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.662537] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.445374] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.546265] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.088654] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.936127] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.165405] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.483002] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.162415] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.184937] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.290863] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.488922] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.049500] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.915619] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.053650] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.184113] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.095734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.553070] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.900909] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.899353] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.356812] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.466949] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.704865] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.603638] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.758606] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.289734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.911377] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.697266] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.204163] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.129150] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.715698] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.906738] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.272949] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.280579] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.629883] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.694092] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.201721] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.266785] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.140336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.346375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.434925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.150146] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.030273] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.647766] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.629395] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.345627] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.354248] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.648499] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.347168] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.862549] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.823547] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.798645] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.698181] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.040100] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.174181] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.237976] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.910034] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.407410] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.188113] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.628479] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.441162] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.075500] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.736633] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.174181] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.035461] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.080139] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.121643] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.292419] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.950317] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.202942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.367065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.316528] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.597351] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.463379] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.427612] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.872803] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.200134] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.949829] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.394470] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.171753] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.266113] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.248596] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.004578] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.208374] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.737915] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.168518] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.468872] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.033875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.343506] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.028969] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.289734] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.011174] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.289795] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.106750] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.595642] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.007337] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.763428] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.369141] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.238159] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.591919] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.741089] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.389648] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.873779] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.676514] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.778809] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.687256] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.574829] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.711060] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.385254] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.063843] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.627563] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.606812] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.078979] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.485840] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.024224] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.676147] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.024224] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.752808] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.826782] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.015298] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.524536] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.992920] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.079346] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.558105] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.830566] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.880371] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.644287] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.951782] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.246338] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.958862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.428345] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1517.221313] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.681763] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.089233] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.957397] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.145386] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1621.908325] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1640.194702] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1661.380981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1681.603760] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1702.359863] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1725.687256] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1746.407104] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1767.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1791.211914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1810.921143] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1834.844971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1859.627075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1881.518799] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1906.645142] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1928.738403] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1951.409668] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1974.710449] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1998.103027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2021.198120] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2047.514282] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2074.083740] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2096.810059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2123.590576] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2147.340088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2171.827881] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2193.848389] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2219.620850] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2244.582520] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2269.712646] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2293.072998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2320.185303] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2344.767578] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2374.491699] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2402.448486] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2430.133545] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2458.825439] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2488.180908] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2517.877686] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2544.849121] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2572.882568] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2599.774902] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2624.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2652.578857] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2682.208496] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2707.136230] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2736.125977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2766.217773] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2797.177490] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2828.996338] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2861.573730] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2893.339355] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2924.399414] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2953.116455] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 2982.685547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3013.742188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3044.097412] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3070.861328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3102.776855] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3135.795654] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3167.256104] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3201.682861] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3235.772705] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3270.032227] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3302.629150] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3335.038330] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3363.404541] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3391.126709] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3424.439209] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3477.933350] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3519.527832] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3559.312744] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3602.059082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3646.604004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3689.267334] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3732.970459] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3773.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3813.090820] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3854.933594] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3897.049072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3938.657471] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3980.277100] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4020.103027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4062.644775] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4105.500488] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4145.845215] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4188.733398] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4233.238770] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4275.575684] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4318.536621] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4362.481445] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4406.436035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4453.250488] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4494.978516] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4540.128906] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4584.884277] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4628.537109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4671.146484] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4713.803711] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4756.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4802.062500] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4845.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4892.473633] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4940.065430] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4980.688965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5021.611328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5064.866211] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5105.807129] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5149.029785] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5193.224609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5233.353516] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5274.208984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5315.936035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5357.467773] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5403.378906] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5445.977539] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5489.385254] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5531.160156] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5573.290039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5615.091309] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5645.283691] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5675.530762] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5703.911133] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5730.695313] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5766.518555] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5793.512695] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5820.741699] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5848.076172] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5875.348145] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5902.368164] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5929.848145] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5957.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 5984.803711] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6012.521484] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6040.567383] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6068.579102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6097.265137] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6125.718262] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6153.846191] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6181.742676] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6209.812988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6237.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6265.734863] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6295.818848] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6325.524414] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6354.301758] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6382.671387] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6411.873047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6442.078613] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6471.689453] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6500.051758] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6528.550293] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6557.081543] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6586.891113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6619.466797] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6653.919434] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6688.014160] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6722.579590] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6757.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6791.383301] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6824.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6856.491699] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6889.935547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6925.186035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6959.577637] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 6993.679199] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7025.910645] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7059.536621] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7093.049805] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7126.095703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7162.253906] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7197.842285] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7233.471191] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7268.416992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7301.702637] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7338.330078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7372.063965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7406.359375] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7441.939453] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7477.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7513.401367] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7547.692383] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7582.804199] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7617.270020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7654.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7689.793457] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7724.636719] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7759.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7795.067871] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7830.386230] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7866.266113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7901.580078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7937.888184] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 7974.389648] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8010.555664] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8045.652832] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8083.938477] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8121.193359] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8156.245605] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8193.467773] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8229.227539] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8265.280273] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8302.349609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8339.200195] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8376.204102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8412.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8448.110352] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8483.400391] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8519.461914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8556.354492] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8593.163086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8630.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8667.831055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8706.563477] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8744.281250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8780.579102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8819.463867] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8875.119141] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8930.093750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 8986.127930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9035.748047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9084.947266] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9136.151367] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9186.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9236.084961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9289.882813] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9346.385742] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9405.781250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9464.372070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9523.838867] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9585.579102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9642.796875] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9705.639648] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9767.321289] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9822.864258] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9883.746094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9938.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 9989.944336] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10039.280273] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10091.468750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10144.899414] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10194.491211] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10250.258789] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10303.918945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10355.479492] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10403.671875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10457.303711] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10505.428711] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10552.676758] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10598.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10645.083008] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10691.546875] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10739.192383] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10786.971680] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10834.083008] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10881.102539] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10930.690430] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10980.655273] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11029.696289] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11076.928711] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11126.668945] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11177.813477] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11228.276367] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11275.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11326.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11376.664063] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11424.358398] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11470.387695] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11524.345703] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11573.930664] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11625.698242] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11674.220703] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11718.046875] [T/O: false ][Cruise: false ] +[Elevator: -0.562804] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11764.351563] [T/O: false ][Cruise: false ] +[Elevator: -0.669560] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11808.245117] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11852.815430] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11899.615234] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11941.914063] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11989.855469] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12034.677734] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12081.196289] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12131.813477] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12178.226563] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12227.273438] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12276.406250] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12325.322266] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12373.029297] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12420.226563] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12459.996094] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12505.454102] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12552.368164] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12600.904297] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12650.678711] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12698.682617] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12746.204102] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12794.539063] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12841.898438] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12892.079102] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12937.432617] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12977.969727] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13025.128906] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13067.824219] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13106.805664] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13145.678711] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13184.486328] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13229.164063] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13273.188477] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13318.486328] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13355.632813] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13397.565430] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13436.574219] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13475.161133] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13515.186523] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13561.274414] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13604.871094] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13651.312500] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13691.786133] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13732.703125] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.060399] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13772.928711] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.160469] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13815.493164] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.223840] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13860.162109] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.253279] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13897.235352] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13938.322266] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13975.691406] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.140336] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14011.644531] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14048.147461] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.044116] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14088.749023] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: -0.101813] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14129.147461] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14162.887695] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14204.587891] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14246.528320] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14289.199219] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14322.061523] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14357.427734] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.216596] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14389.088867] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.202254] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14422.464844] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.174181] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14460.512695] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14494.009766] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14525.929688] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14566.673828] [T/O: false ][Cruise: false ] +[Elevator: -0.528067] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14605.512695] [T/O: false ][Cruise: false ] +[Elevator: -0.485283] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14637.813477] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14673.191406] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14714.449219] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14752.441406] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14790.278320] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14822.791016] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14855.966797] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14894.406250] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14929.200195] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14960.007813] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14996.203125] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15028.880859] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15066.241211] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15097.251953] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15134.854492] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15169.125977] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15198.612305] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15235.011719] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15262.954102] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15293.253906] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15328.360352] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15364.382813] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15398.373047] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15431.975586] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15465.603516] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15498.801758] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15532.801758] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15563.922852] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15594.697266] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15625.108398] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15655.266602] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15682.161133] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15706.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15735.615234] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15764.540039] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15793.010742] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15821.331055] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15850.098633] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15877.958008] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15906.166992] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15933.574219] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15960.914063] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15988.329102] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16015.682617] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16044.281250] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16071.130859] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16097.874023] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16123.212891] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16148.429688] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16173.742188] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16199.041016] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16224.950195] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16250.948242] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16276.130859] [T/O: false ][Cruise: false ] +[Elevator: -0.485283] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16301.179688] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16326.073242] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16351.145508] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16376.629883] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16402.306641] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16427.462891] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16453.285156] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16478.453125] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16503.384766] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16528.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16552.544922] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.054859] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16577.089844] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.353573] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16601.273438] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.562804] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16625.478516] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.216596] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16649.789063] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16674.701172] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16698.818359] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16722.787109] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.095643] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16743.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.345627] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16763.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.642527] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16787.435547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.188113] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16811.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16835.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.314215] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16858.593750] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.642527] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16883.031250] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.410168] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16907.203125] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16931.121094] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16954.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16978.460938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.140336] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16998.373047] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.306456] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17019.101563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.502310] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17042.755859] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17066.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17088.876953] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17112.355469] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17135.970703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17154.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17174.845703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17198.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.083543] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17221.126953] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.434925] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17243.951172] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.245851] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17267.029297] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17290.189453] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17312.587891] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17331.869141] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.418388] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17350.248047] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.562804] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17372.787109] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.393828] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17394.808594] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17414.289063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17433.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17455.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17478.312500] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17500.171875] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17522.195313] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17544.044922] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17566.056641] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17587.957031] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17609.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.238468] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17630.345703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.268264] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17652.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17675.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17696.851563] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17718.667969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.385708] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17740.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.459966] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17762.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.146987] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17783.849609] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17805.816406] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17826.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17847.867188] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17868.066406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17887.847656] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17907.746094] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17928.232422] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17948.339844] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17968.544922] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17988.560547] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.253279] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18009.425781] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.060399] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18029.503906] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18049.582031] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18069.603516] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.275821] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18089.828125] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18110.087891] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18129.605469] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18149.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.393828] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18168.095703] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.101813] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18187.005859] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18206.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18226.191406] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18246.083984] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18265.638672] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18285.355469] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18305.783203] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18325.478516] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18345.035156] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18364.150391] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18383.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18402.839844] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.223840] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18422.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18438.822266] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18454.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18472.787109] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18491.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18510.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18528.601563] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18547.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18565.972656] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18584.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18602.466797] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18621.171875] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.459966] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18639.583984] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18657.757813] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18675.759766] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18693.843750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18712.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18730.187500] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18748.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18766.589844] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18784.609375] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18802.937500] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18820.869141] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18838.615234] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18855.707031] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18873.250000] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18890.800781] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18907.640625] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18924.769531] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18942.312500] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18959.558594] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18976.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18993.375000] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19010.261719] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19027.707031] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19044.578125] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.174181] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19061.226563] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.418388] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19078.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19095.867188] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19112.945313] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19129.789063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19147.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19164.769531] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19182.474609] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19199.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19217.189453] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19234.535156] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19252.169922] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.071784] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19270.042969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19287.808594] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19305.066406] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19323.070313] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19341.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19359.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19377.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19395.371094] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19413.173828] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19431.228516] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19449.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19467.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19484.910156] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19502.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19519.611328] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19537.603516] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19555.810547] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19573.962891] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19592.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19610.289063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19627.720703] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19644.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19662.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19679.044922] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19696.251953] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19713.703125] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19731.562500] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19749.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19766.533203] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19783.595703] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19800.601563] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19818.125000] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19835.005859] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19852.001953] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19869.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19887.343750] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19904.556641] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19921.419922] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19938.603516] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19955.605469] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19969.644531] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19983.968750] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20000.554688] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20017.242188] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20033.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20050.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20067.712891] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20084.634766] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20101.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20118.525391] [T/O: false ][Cruise: false ] +[Elevator: 0.633565] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20135.396484] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20152.738281] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20170.865234] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20188.117188] [T/O: false ][Cruise: false ] +[Elevator: 0.434925] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20205.958984] [T/O: false ][Cruise: false ] +[Elevator: 0.589143] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20220.515625] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20235.529297] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20252.816406] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20270.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20288.871094] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: -0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20307.017578] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20325.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20343.285156] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20361.853516] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20380.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.188113] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20400.076172] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.562804] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20419.082031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.275820] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20438.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20458.220703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20475.923828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20491.675781] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20510.574219] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.238469] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20530.900391] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.562804] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20551.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.369570] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20571.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20591.632813] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20611.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20633.339844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20654.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.418388] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20674.949219] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.361554] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20696.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20717.736328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20739.476563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20759.277344] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20777.595703] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20797.972656] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20818.562500] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20839.300781] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.174181] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20860.193359] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.245851] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20881.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.209401] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20902.890625] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20924.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.133748] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20945.863281] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.071784] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20967.644531] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20988.994141] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21010.341797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21034.378906] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21061.035156] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21088.529297] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21113.992188] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21140.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21165.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21193.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21218.578125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21244.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21267.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21290.914063] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21308.667969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21329.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21351.570313] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21373.289063] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21395.691406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21417.898438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21440.160156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21462.519531] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21484.242188] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21506.410156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21528.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21549.984375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21571.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21593.722656] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21615.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21637.441406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21654.832031] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21673.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21694.916016] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21716.183594] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21737.664063] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21758.863281] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21779.957031] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21800.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21821.847656] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21842.710938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21863.324219] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21883.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21904.406250] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21924.361328] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21940.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21958.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21978.488281] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21998.894531] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22019.376953] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22040.755859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22061.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22082.019531] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22102.136719] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22137.480469] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22166.755859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22182.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22198.486328] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22214.482422] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22231.128906] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22247.962891] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22267.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22287.066406] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22306.652344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22326.326172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22345.888672] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22366.361328] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22385.699219] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22405.248047] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.095643] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22424.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.545380] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22444.009766] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.580336] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22463.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22480.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22497.785156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22516.765625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22535.742188] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22555.306641] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22574.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.146987] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22593.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22612.642578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22631.658203] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22651.166016] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22671.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22691.865234] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.202254] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22711.478516] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22730.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22750.541016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22770.167969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22789.615234] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22808.878906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22828.261719] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22847.427734] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22866.384766] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22885.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22904.285156] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.401982] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22922.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.393828] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22941.429688] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22960.115234] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22978.898438] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22997.455078] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.345627] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23015.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23034.191406] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23052.388672] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23070.701172] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.238469] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23089.603516] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23107.765625] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23125.830078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23144.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.181120] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23162.025391] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.353573] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23180.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.066042] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23198.076172] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23216.222656] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23232.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23247.582031] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23265.017578] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23282.468750] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23299.941406] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23317.277344] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23335.001953] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23351.410156] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23368.208984] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.140336] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23384.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.153698] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23400.757813] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.167297] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23417.107422] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.153698] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23433.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23449.400391] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23463.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23476.460938] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23492.802734] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.114377] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23508.597656] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.101813] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23524.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.095644] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23540.441406] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23556.791016] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23572.542969] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23588.460938] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23604.259766] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23619.687500] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23635.298828] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23650.587891] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23665.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23681.005859] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23696.328125] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23711.667969] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23726.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23742.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23756.857422] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23771.916016] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23786.958984] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23802.060547] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23816.755859] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23831.462891] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23846.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23861.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23877.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23892.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23907.199219] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23921.585938] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23935.951172] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23950.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23965.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23979.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23994.119141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24008.443359] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24022.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24037.132813] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24051.496094] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24065.943359] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24080.144531] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24094.179688] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24108.107422] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24121.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24135.998047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24149.568359] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24163.328125] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24177.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24190.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24204.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24218.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24232.304688] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24246.083984] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24259.867188] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24273.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24287.228516] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24299.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24310.679688] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24324.330078] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24337.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24351.064453] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24364.369141] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24377.798828] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24390.835938] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24404.130859] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24417.156250] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24430.125000] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24443.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.077619] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24455.919922] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24469.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24481.679688] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24494.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24507.189453] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24519.863281] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24532.593750] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24545.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24558.712891] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24571.718750] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.181120] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24584.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.353573] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24597.058594] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.369570] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24609.675781] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.369570] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24621.878906] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.353573] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24634.164063] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.345627] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24646.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24658.460938] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.245851] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24670.675781] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24682.791016] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24695.101563] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24707.044922] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24719.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24731.154297] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24743.410156] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24755.544922] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24767.576172] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24779.701172] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24791.960938] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24804.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.071784] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24816.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24828.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24841.304688] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24853.763672] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24866.226563] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.066042] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24878.765625] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24891.386719] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24903.919922] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24916.216797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24929.099609] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24941.529297] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24954.085938] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24966.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24979.667969] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.071784] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24992.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.181120] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25005.382813] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.174181] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25018.505859] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.160469] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25031.707031] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25044.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25058.003906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25071.171875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25084.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25097.470703] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25110.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.983788] [Flaps: 0.000000] [Data Ref: 25124.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25137.373047] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25150.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25163.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25177.337891] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25190.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25204.035156] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25217.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25230.123047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.044116] [Throttle:0.962948] [Flaps: 0.000000] [Data Ref: 25243.347656] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.054859] [Throttle:0.991225] [Flaps: 0.000000] [Data Ref: 25256.810547] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25269.589844] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25282.484375] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25295.685547] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25308.929688] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25322.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25335.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25348.464844] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.987679] [Flaps: 0.000000] [Data Ref: 25361.468750] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25374.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25387.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25400.582031] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25413.359375] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25426.128906] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25438.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25451.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25464.683594] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25477.517578] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.003875] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25490.234375] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.253279] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25502.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25514.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25526.843750] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25538.738281] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25550.855469] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25562.498047] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25574.224609] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25585.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25597.568359] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25609.050781] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.049429] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25620.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25631.796875] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.245851] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25642.761719] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.216596] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25653.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25664.701172] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25675.544922] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25686.060547] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25696.593750] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25706.843750] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25717.253906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25727.427734] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25737.369141] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25747.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25757.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25766.916016] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25776.644531] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25786.148438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25795.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25804.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25814.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25823.382813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25832.578125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25841.316406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25850.443359] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25859.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25868.025391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25876.753906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25885.425781] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25893.917969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25902.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25910.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25918.861328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25927.095703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25935.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25943.105469] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25951.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25958.611328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25966.304688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25973.845703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25981.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25988.474609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 25995.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26002.935547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26010.126953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26017.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26024.080078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26030.960938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26037.552734] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26044.337891] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26050.830078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26057.363281] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26063.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26070.117188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26076.783203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26083.166016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26089.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26095.130859] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26100.990234] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26106.814453] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26112.589844] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26118.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26123.822266] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26129.226563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26133.714844] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26138.388672] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26143.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26148.656250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26153.767578] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26158.658203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26163.531250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26168.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26172.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26177.474609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26181.851563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26186.326172] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26190.654297] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26194.845703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26198.943359] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26203.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26207.019531] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26210.855469] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26214.568359] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26218.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26221.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26225.115234] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26228.470703] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26231.767578] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26234.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26237.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26241.031250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26243.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26246.632813] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26249.304688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26251.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26254.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26256.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26258.978516] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26261.228516] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26263.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26265.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26267.058594] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26268.816406] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26270.492188] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26272.085938] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26273.576172] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26274.958984] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26276.251953] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.024224] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26277.423828] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.024224] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26278.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.024224] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26279.453125] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26280.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26281.089844] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26281.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26282.363281] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26282.865234] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.583984] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.787109] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26284.023438] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26284.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26284.023438] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.769531] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.568359] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.324219] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26283.041016] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26282.712891] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26282.345703] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26281.953125] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26281.517578] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26281.056641] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26280.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26280.037109] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26279.490234] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26278.914063] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26278.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26277.720703] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26277.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26276.414063] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26275.712891] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26274.994141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26274.210938] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26273.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26272.597656] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26271.716797] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26270.820313] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26269.873047] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26268.896484] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26267.878906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26266.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26265.640625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26264.464844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26263.214844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26261.884766] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26260.533203] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26259.115234] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26257.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26256.023438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26254.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26252.583984] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26250.740234] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26248.802734] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26246.824219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26244.814453] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26242.728516] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26240.525391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26238.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26235.900391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26233.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26230.691406] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26228.078125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26225.326172] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26222.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26219.285156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26216.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26212.998047] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26209.712891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26206.214844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26202.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26199.105469] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26195.365234] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26191.544922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26187.669922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26183.519531] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26179.251953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26174.703125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26170.347656] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26165.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26161.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26156.974609] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26152.742188] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26148.195313] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26143.978516] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26139.261719] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26134.396484] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26129.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26124.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26119.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26113.605469] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26108.341797] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.038928] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26102.699219] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26096.957031] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26091.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26085.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26078.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.958083] [Flaps: 0.000000] [Data Ref: 26072.769531] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.019659] [Yaw: 0.038928] [Throttle:0.976322] [Flaps: 0.000000] [Data Ref: 26066.503906] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26060.093750] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26053.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.007337] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26046.816406] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.011174] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26040.029297] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.011174] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26033.339844] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.038928] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26026.302734] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: 0.120767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26018.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.060399] [Yaw: 0.160469] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26011.281250] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.181120] [Yaw: 0.127224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26004.281250] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.231131] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25997.222656] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.268264] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25989.730469] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.275821] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25982.246094] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.291058] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25974.650391] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.298737] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25967.292969] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.298737] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25959.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.298737] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25951.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.245851] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25943.457031] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.223840] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25935.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.209401] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25928.792969] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.195158] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25922.042969] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.174181] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25914.646484] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25907.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25899.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.160469] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25892.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.160469] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25884.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.160469] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25877.001953] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.167297] [Yaw: 0.083543] [Throttle:0.985420] [Flaps: 0.000000] [Data Ref: 25869.015625] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.174181] [Yaw: 0.095644] [Throttle:0.952325] [Flaps: 0.000000] [Data Ref: 25861.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.167297] [Yaw: 0.089552] [Throttle:0.923724] [Flaps: 0.000000] [Data Ref: 25854.607422] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.167297] [Yaw: 0.077619] [Throttle:0.890937] [Flaps: 0.000000] [Data Ref: 25847.078125] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.160469] [Yaw: 0.044116] [Throttle:0.860147] [Flaps: 0.000000] [Data Ref: 25839.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.160469] [Yaw: 0.038928] [Throttle:0.829057] [Flaps: 0.000000] [Data Ref: 25831.640625] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.167297] [Yaw: 0.038928] [Throttle:0.795763] [Flaps: 0.000000] [Data Ref: 25823.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.160469] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25815.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25807.281250] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.160469] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25799.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25791.660156] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25783.386719] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25774.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25766.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.146987] [Yaw: 0.015298] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25758.009766] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25749.710938] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.146987] [Yaw: 0.003875] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25741.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.146987] [Yaw: 0.003875] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25732.835938] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.146987] [Yaw: 0.003875] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25723.894531] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25714.716797] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.146987] [Yaw: 0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25705.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25696.984375] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.140336] [Yaw: 0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25687.617188] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.140336] [Yaw: -0.000981] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25678.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.133748] [Yaw: -0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25669.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.133748] [Yaw: -0.007337] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25659.367188] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.140336] [Yaw: 0.133748] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25649.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.140336] [Yaw: 0.597975] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25639.246094] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.140336] [Yaw: 0.606834] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25629.134766] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.133748] [Yaw: 0.519453] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25618.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.133748] [Yaw: 0.519453] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25608.515625] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.133748] [Yaw: 0.493782] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25598.519531] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.133748] [Yaw: 0.468375] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25588.359375] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.127224] [Yaw: 0.459966] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25577.679688] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.071784] [Yaw: 0.451588] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25566.531250] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.049429] [Yaw: 0.443241] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25555.271484] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.011174] [Yaw: 0.443241] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25544.675781] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.089552] [Yaw: 0.443241] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25533.347656] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.216596] [Yaw: 0.426640] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25521.812500] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.223840] [Yaw: 0.426640] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25509.792969] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.231131] [Yaw: 0.426640] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25498.429688] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.231131] [Yaw: 0.426640] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25486.556641] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.231131] [Yaw: 0.418388] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25474.087891] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.231131] [Yaw: 0.418388] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25461.099609] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.167297] [Yaw: 0.418388] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25447.927734] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.077619] [Yaw: 0.418388] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25435.689453] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.007337] [Yaw: 0.418388] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25422.611328] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.003875] [Yaw: 0.401982] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25409.392578] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.019659] [Yaw: 0.393828] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25393.962891] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.044116] [Yaw: 0.369570] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25378.716797] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.028969] [Yaw: 0.361554] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25364.183594] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.028969] [Yaw: 0.253279] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25348.835938] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.028969] [Yaw: 0.216596] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25333.082031] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.033876] [Yaw: 0.195158] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25317.062500] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.024224] [Yaw: 0.188113] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25300.759766] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.024224] [Yaw: 0.202254] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25283.857422] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.024224] [Yaw: 0.202254] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25267.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.019659] [Yaw: 0.209401] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25253.109375] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.011174] [Yaw: 0.209401] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25236.050781] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.015298] [Yaw: 0.209401] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25218.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.003875] [Yaw: 0.209401] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25200.917969] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.000981] [Yaw: 0.209401] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25183.222656] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.000981] [Yaw: 0.223840] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25165.777344] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.000981] [Yaw: 0.223840] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25149.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.000981] [Yaw: 0.223840] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25130.927734] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.000981] [Yaw: 0.231131] [Throttle:0.786363] [Flaps: 0.000000] [Data Ref: 25111.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.007337] [Yaw: 0.253279] [Throttle:0.800615] [Flaps: 0.000000] [Data Ref: 25091.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.011174] [Yaw: 0.253279] [Throttle:0.834231] [Flaps: 0.000000] [Data Ref: 25070.703125] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.015298] [Yaw: 0.238469] [Throttle:0.868011] [Flaps: 0.000000] [Data Ref: 25049.375000] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.015298] [Yaw: 0.231131] [Throttle:0.902035] [Flaps: 0.000000] [Data Ref: 25030.525391] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.015298] [Yaw: 0.209401] [Throttle:0.930944] [Flaps: 0.000000] [Data Ref: 25010.796875] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.015298] [Yaw: 0.181120] [Throttle:0.963985] [Flaps: 0.000000] [Data Ref: 24989.242188] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.015298] [Yaw: 0.174181] [Throttle:0.997373] [Flaps: 0.000000] [Data Ref: 24966.484375] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.038928] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24943.650391] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.066042] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24919.833984] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.153698] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24895.527344] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.174181] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24870.523438] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.167297] [Yaw: 0.133748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24846.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.167297] [Yaw: 0.071784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24821.175781] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.167297] [Yaw: 0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24795.369141] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24769.513672] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24746.951172] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24720.291016] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24692.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24666.365234] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24640.976563] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24615.339844] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24587.896484] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24561.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24534.490234] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24505.507813] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24475.589844] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24445.412109] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24414.580078] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24383.123047] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.160469] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24354.941406] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.127224] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24322.136719] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.120767] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24292.826172] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.095644] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24261.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.054859] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24230.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.028969] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24196.601563] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24165.175781] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24132.169922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24099.699219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24067.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24034.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23999.525391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23967.408203] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23931.646484] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23895.621094] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23857.294922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23819.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23784.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23747.537109] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23712.693359] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23677.753906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23643.285156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23604.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23566.507813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23529.654297] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23488.076172] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23451.699219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23411.064453] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23368.484375] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23328.623047] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23288.541016] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23246.785156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23206.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23161.753906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23117.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23074.486328] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23031.587891] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22985.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22942.818359] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22897.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22855.306641] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22808.453125] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22762.148438] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22718.419922] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22675.439453] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22629.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.216596] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22582.695313] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22535.173828] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.298737] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22488.179688] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.298737] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22442.589844] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.322011] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22391.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.337718] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22339.517578] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22293.333984] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22248.582031] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22199.554688] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22155.869141] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22106.433594] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.369570] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22053.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.369570] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22006.378906] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21960.154297] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21907.777344] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21858.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.361554] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21811.423828] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.298737] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21762.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21712.158203] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21662.617188] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21615.916016] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21560.089844] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21504.287109] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21456.550781] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21401.156250] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.181120] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21344.660156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21294.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21238.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21182.275391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21130.976563] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.019659] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21079.228516] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.181120] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21026.193359] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.361554] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20969.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.268264] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20915.736328] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20863.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.140336] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20806.648438] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.418388] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20748.910156] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20697.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20634.875000] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.095644] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20570.738281] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20506.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.188113] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20447.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20386.025391] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.160469] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20319.056641] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20251.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: 0.089552] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20187.835938] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.033876] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20128.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20066.824219] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.083543] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20003.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.146987] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19943.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.188113] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19878.263672] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: -0.202254] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19806.125000] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: -0.195158] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19746.546875] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.174181] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19685.923828] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.133748] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19624.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.127224] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19565.339844] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.133748] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19503.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.120767] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19444.503906] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19387.994141] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19328.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.083543] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19272.998047] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19214.316406] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19156.587891] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19095.972656] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19039.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18985.476563] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18933.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18879.593750] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18832.103516] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.011174] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18777.058594] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.011174] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18723.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.011174] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18672.591797] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18623.650391] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18575.759766] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18529.287109] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18479.671875] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18426.580078] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.114377] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18373.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18326.998047] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18281.253906] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18234.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.019659] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18190.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.019659] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18144.486328] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18094.603516] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18054.460938] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18006.488281] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17961.626953] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17920.035156] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17875.156250] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17833.927734] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17793.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17753.728516] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17712.789063] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17673.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17631.919922] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17593.330078] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17551.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.038928] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17512.541016] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17473.447266] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.033876] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17431.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17389.343750] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17353.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17316.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.044116] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17280.917969] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.044116] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17240.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.038928] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17204.218750] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.028969] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17164.720703] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17129.871094] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17089.417969] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17047.521484] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17006.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16972.958984] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16935.119141] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16895.335938] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16861.191406] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16821.917969] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16784.011719] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16744.710938] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16703.957031] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16666.609375] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16629.183594] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16594.152344] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16558.226563] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16521.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16483.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16449.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16411.853516] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16378.974609] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16339.900391] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16307.040039] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16269.680664] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16236.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16199.043945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16161.781250] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.095644] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16127.875977] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16092.570313] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16059.558594] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16028.169922] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.120767] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15993.534180] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15959.793945] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15928.250000] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15895.243164] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15861.090820] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15827.829102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15796.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15763.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15730.146484] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15699.369141] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15666.811523] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15632.943359] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15598.818359] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15563.316406] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15530.260742] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15491.876953] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15455.961914] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15421.879883] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15386.449219] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15351.592773] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15314.976563] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15279.449219] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15246.375000] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15214.921875] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15178.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15144.116211] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15108.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15074.856445] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15040.083008] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15003.294922] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14967.942383] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14929.440430] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14894.131836] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14858.991211] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14820.975586] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14784.966797] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14746.882813] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14711.425781] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14672.278320] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14637.553711] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.066042] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14600.043945] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.066042] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14567.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14531.533203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14493.927734] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14457.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14421.189453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14378.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14337.300781] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14301.088867] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14264.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14228.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14191.488281] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14154.470703] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14119.901367] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14080.595703] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14045.212891] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14008.005859] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13975.392578] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13940.093750] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13903.522461] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13867.090820] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13832.239258] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13798.855469] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13762.909180] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13723.652344] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13685.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13649.071289] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13614.023438] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13577.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13542.120117] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13506.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.202254] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13470.055664] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.174181] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13433.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13397.678711] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13362.024414] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13327.627930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13294.809570] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.353573] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13259.298828] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.451588] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13224.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13190.848633] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10466.462891] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10453.679688] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10442.037109] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10431.068359] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10421.759766] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10413.070313] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10405.400391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10397.024414] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10389.321289] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10381.638672] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10374.571289] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10367.715820] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10361.275391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10354.444336] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10347.393555] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10340.202148] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10333.147461] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10326.413086] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10320.039063] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10313.598633] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10308.557617] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10303.294922] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10298.062500] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10292.921875] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10288.237305] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10284.065430] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10279.708008] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10275.648438] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10271.614258] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10267.754883] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10264.210938] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10260.868164] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10257.743164] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10254.768555] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10252.301758] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10249.695313] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10247.300781] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10245.175781] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10242.924805] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10240.666992] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10238.750000] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10236.943359] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10235.286133] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10233.792969] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10232.508789] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10231.347656] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10230.302734] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10229.419922] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10228.696289] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10228.043945] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10227.556641] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10227.188477] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10226.963867] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10226.867188] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10226.913086] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10227.078125] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10227.362305] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10227.762695] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10228.300781] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10228.920898] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10229.682617] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10230.536133] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10231.602539] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10232.700195] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10234.049805] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10235.375977] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10236.735352] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10238.252930] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10240.151367] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10242.027344] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10243.978516] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10245.931641] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10248.130859] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10250.708008] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10253.071289] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10255.794922] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10258.966797] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10261.855469] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10264.632813] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10267.799805] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10270.567383] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10273.792969] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10276.877930] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10280.324219] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10283.689453] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10287.055664] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10290.209961] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10293.852539] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10297.451172] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10301.065430] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10304.929688] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10308.650391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10312.926758] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10316.874023] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10321.238281] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10326.125977] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10331.126953] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10335.785156] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10340.675781] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10345.909180] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10351.235352] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10357.339844] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10362.401367] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10368.125000] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10373.397461] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10378.915039] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10386.120117] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10391.912109] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10397.208984] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10402.636719] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10408.682617] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10414.111328] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10420.001953] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10429.388672] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10435.978516] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10443.067383] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10449.238281] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10456.268555] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10463.546875] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10471.145508] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10478.708984] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10486.735352] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10493.669922] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10500.983398] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10508.732422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10516.255859] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10523.624023] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10531.596680] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10540.472656] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10548.849609] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10556.843750] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10565.016602] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10573.419922] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10580.996094] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10589.819336] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10599.503906] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10608.770508] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10618.689453] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10627.421875] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10636.724609] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10646.083008] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10655.831055] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10666.503906] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10677.576172] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10687.471680] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10698.361328] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10710.033203] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10722.305664] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10734.697266] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10746.560547] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10764.732422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10778.427734] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10792.267578] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10805.974609] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10818.263672] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10830.325195] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10843.987305] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10855.670898] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10869.490234] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10881.763672] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10895.786133] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10908.686523] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10923.093750] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10937.555664] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10951.241211] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10964.008789] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10977.477539] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10990.056641] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11003.288086] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11016.605469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11031.433594] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11046.441406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11060.801758] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11075.732422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11090.898438] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11113.547852] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11130.928711] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11148.000000] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11164.625977] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11179.720703] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11195.041016] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11212.564453] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11229.565430] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11246.770508] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11263.803711] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11281.252930] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: -0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11297.136719] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11314.171875] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11330.656250] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11346.994141] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11365.670898] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11384.309570] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11402.941406] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11421.932617] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11440.055664] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11458.363281] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11477.578125] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11494.976563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11511.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11527.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11545.475586] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11563.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11581.106445] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11597.765625] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11615.915039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11632.377930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11650.295898] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11666.533203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11683.821289] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11704.082031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11724.526367] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11745.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11766.367188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11785.510742] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11807.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11829.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11850.736328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11870.652344] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11890.602539] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11909.344727] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11928.825195] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11949.387695] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11971.452148] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11991.968750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12013.455078] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.038928] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12033.125000] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -0.146987] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12053.558594] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.202254] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12074.991211] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: -0.231131] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12095.647461] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.181120] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12118.275391] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12142.390625] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12169.067383] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12193.808594] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.019659] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12216.896484] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.015298] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12238.814453] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12260.885742] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12286.450195] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12314.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12340.534180] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12363.506836] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12386.279297] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12411.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12439.347656] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12461.919922] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12485.750000] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12509.596680] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12534.012695] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12557.601563] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12585.952148] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12615.448242] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12646.224609] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12673.642578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12700.705078] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12728.573242] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12759.735352] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12789.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12816.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12845.690430] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12875.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12902.802734] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12928.341797] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12955.536133] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12983.982422] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13012.266602] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13040.294922] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13071.740234] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13103.102539] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13132.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13163.246094] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13192.220703] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13222.217773] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13253.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13285.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13318.056641] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13349.977539] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13386.368164] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13422.457031] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13458.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13496.113281] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13532.680664] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13567.072266] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13602.106445] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13639.487305] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13674.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13714.895508] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13751.351563] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13789.115234] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13827.345703] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13867.388672] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13910.459961] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13951.051758] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13990.388672] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14029.747070] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14071.004883] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14111.958984] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14155.020508] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14202.316406] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14243.747070] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14283.044922] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14324.700195] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.019659] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14368.118164] [T/O: false ][Cruise: false ] +[Elevator: -0.426640] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14412.309570] [T/O: false ][Cruise: false ] +[Elevator: -0.443240] [Roll: 0.054859] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14456.261719] [T/O: false ][Cruise: false ] +[Elevator: -0.434924] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14499.282227] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14544.966797] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14596.764648] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14643.806641] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14684.481445] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.049429] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14722.242188] [T/O: false ][Cruise: false ] +[Elevator: -0.510867] [Roll: 0.049429] [Yaw: -0.028969] [Throttle:0.982706] [Flaps: 0.000000] [Data Ref: 14759.589844] [T/O: false ][Cruise: false ] +[Elevator: -0.510867] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.941295] [Flaps: 0.000000] [Data Ref: 14798.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.510867] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.897408] [Flaps: 0.000000] [Data Ref: 14841.808594] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 0.089552] [Yaw: 0.015298] [Throttle:0.849770] [Flaps: 0.000000] [Data Ref: 14883.380859] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: 0.077619] [Yaw: 0.015298] [Throttle:0.803363] [Flaps: 0.000000] [Data Ref: 14924.261719] [T/O: false ][Cruise: false ] +[Elevator: -0.361554] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.756049] [Flaps: 0.000000] [Data Ref: 14966.219727] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.167297] [Yaw: -0.011174] [Throttle:0.709008] [Flaps: 0.000000] [Data Ref: 15007.358398] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.195158] [Yaw: -0.028969] [Throttle:0.662235] [Flaps: 0.000000] [Data Ref: 15047.159180] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.337718] [Yaw: -0.038928] [Throttle:0.619039] [Flaps: 0.000000] [Data Ref: 15084.534180] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.231131] [Yaw: -0.038928] [Throttle:0.577274] [Flaps: 0.000000] [Data Ref: 15119.336914] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.216596] [Yaw: -0.038928] [Throttle:0.533420] [Flaps: 0.000000] [Data Ref: 15157.724609] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.490759] [Flaps: 0.000000] [Data Ref: 15189.444336] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.453569] [Flaps: 0.000000] [Data Ref: 15225.282227] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.140336] [Yaw: -0.000981] [Throttle:0.410474] [Flaps: 0.000000] [Data Ref: 15257.307617] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.049429] [Yaw: 0.028969] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15293.422852] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.049429] [Yaw: 0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15326.339844] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15358.437500] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15390.383789] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15420.826172] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15449.208984] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15479.842773] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15512.652344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15548.338867] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15578.659180] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15608.448242] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15637.612305] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15670.333008] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15702.462891] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15732.838867] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15759.665039] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15791.662109] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15824.190430] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15850.910156] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15880.661133] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15910.616211] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15940.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 15972.094727] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16001.717773] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16032.833984] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16061.583984] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16092.431641] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16122.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16152.030273] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16182.800781] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16211.574219] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16242.582031] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16274.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16305.358398] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16332.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16361.370117] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16394.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16422.585938] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16451.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16480.667969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16508.970703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16539.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16566.306641] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16593.451172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16623.125000] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16649.261719] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16678.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16710.628906] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16739.220703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16770.683594] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16800.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16827.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16859.728516] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16887.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16916.164063] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16943.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16970.798828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 16996.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17022.763672] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17051.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17077.152344] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.209401] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17102.039063] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -0.410168] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17129.851563] [T/O: false ][Cruise: false ] +[Elevator: -0.071784] [Roll: -0.410168] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17156.480469] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: -0.426640] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17182.402344] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.401982] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17208.941406] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.401982] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17234.363281] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.353572] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17263.007813] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.174181] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17290.166016] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.188113] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17321.070313] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.188113] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17350.205078] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.174181] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17381.685547] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.049429] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17411.013672] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17446.117188] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17480.640625] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17509.263672] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.044116] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17541.968750] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17576.460938] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.095644] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17604.955078] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.095644] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17635.363281] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.095644] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17661.230469] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: 0.095644] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17694.238281] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: 0.066042] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17726.292969] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17754.929688] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.028969] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17784.662109] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.024224] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17811.509766] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 0.019659] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17836.175781] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17861.498047] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17886.554688] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17912.478516] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.011174] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17940.033203] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17967.449219] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 17991.287109] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18016.054688] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18043.748047] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18069.105469] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18093.570313] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18116.689453] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18139.189453] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18161.882813] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18183.212891] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18204.462891] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18225.830078] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18246.677734] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18266.212891] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18288.888672] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18313.335938] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18337.375000] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18358.746094] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18377.767578] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18397.087891] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18414.988281] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18432.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.024224] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18449.703125] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.024224] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18466.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18483.457031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18501.037109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18516.816406] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18532.638672] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18547.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18562.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18577.292969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18591.746094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18604.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18618.630859] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18633.244141] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18646.482422] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18661.496094] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18677.158203] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18691.138672] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18704.238281] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18716.875000] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18730.404297] [T/O: false ][Cruise: false ] +[Elevator: -0.060399] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18743.740234] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.044116] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18757.267578] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.044116] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18771.380859] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18786.626953] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18801.156250] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18816.066406] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18831.406250] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18846.742188] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18861.996094] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18877.363281] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18892.527344] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18906.097656] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.033875] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18919.224609] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18932.667969] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.024224] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18945.208984] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18958.648438] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18973.345703] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18986.347656] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 18999.810547] [T/O: false ][Cruise: false ] +[Elevator: -0.291058] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19012.503906] [T/O: false ][Cruise: false ] +[Elevator: -0.291058] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19024.333984] [T/O: false ][Cruise: false ] +[Elevator: -0.298737] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19044.326172] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19056.380859] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19068.707031] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19079.630859] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19090.078125] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19100.888672] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19110.775391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19120.875000] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19131.275391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19140.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19150.390625] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19159.443359] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19169.767578] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19178.416016] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19187.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19196.808594] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19206.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19215.769531] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19224.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19234.017578] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19243.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19253.162109] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19263.150391] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19273.164063] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19282.685547] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19291.976563] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19301.250000] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19311.601563] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19321.390625] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19331.658203] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19342.412109] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19352.410156] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19362.558594] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19372.406250] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19383.173828] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19392.900391] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19403.181641] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19414.187500] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19425.777344] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19437.353516] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19448.082031] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19458.980469] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19471.158203] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19483.537109] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19493.732422] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19504.074219] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19515.648438] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19525.468750] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19536.472656] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19546.873047] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19556.539063] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.120767] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19566.728516] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19575.658203] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.127224] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19584.923828] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: -0.077619] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19593.537109] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: -0.140336] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19602.031250] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: -0.195158] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19609.410156] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: -0.209401] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19616.535156] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: -0.209401] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19623.861328] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: -0.209401] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19630.552734] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: -0.181120] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19638.162109] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: -0.114377] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19644.193359] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19650.097656] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19655.144531] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19660.291016] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19664.726563] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19668.843750] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19672.417969] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19675.351563] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.095644] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19677.666016] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19679.767578] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19681.263672] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19682.367188] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19683.050781] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19683.300781] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19683.150391] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19682.541016] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19681.628906] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19678.519531] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19676.416016] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19673.888672] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19670.714844] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19667.474609] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19663.623047] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19659.750000] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19655.455078] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19650.320313] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19644.494141] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19638.546875] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19632.423828] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19626.058594] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19619.259766] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19611.832031] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19604.244141] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19596.410156] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19587.402344] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19578.173828] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19569.554688] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19559.953125] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19549.882813] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19540.279297] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19528.958984] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19518.431641] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19507.226563] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19496.277344] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19484.558594] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19473.050781] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19459.904297] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19445.679688] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.127224] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19431.388672] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.306456] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19417.324219] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.306456] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19403.630859] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.268264] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19388.888672] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.260750] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19372.601563] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.245851] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19358.318359] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.245851] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19343.425781] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19328.759766] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19313.230469] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19297.833984] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19282.876953] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19267.763672] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.238469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19253.515625] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.231131] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19238.134766] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.223840] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19220.167969] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.223840] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19203.359375] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.216596] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19184.677734] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.000981] [Yaw: 0.160469] [Throttle:0.399944] [Flaps: 0.000000] [Data Ref: 19168.222656] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.003875] [Yaw: 0.127224] [Throttle:0.373383] [Flaps: 0.000000] [Data Ref: 19150.240234] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.338039] [Flaps: 0.000000] [Data Ref: 19132.160156] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.299974] [Flaps: 0.000000] [Data Ref: 19115.326172] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.267316] [Flaps: 0.000000] [Data Ref: 19096.783203] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.227888] [Flaps: 0.000000] [Data Ref: 19074.789063] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.019659] [Yaw: 0.095644] [Throttle:0.184386] [Flaps: 0.000000] [Data Ref: 19055.150391] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.028969] [Yaw: 0.095644] [Throttle:0.149605] [Flaps: 0.000000] [Data Ref: 19034.111328] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.033876] [Yaw: 0.095644] [Throttle:0.106629] [Flaps: 0.000000] [Data Ref: 19012.261719] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.044116] [Yaw: 0.095644] [Throttle:0.069323] [Flaps: 0.000000] [Data Ref: 18991.867188] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.054859] [Yaw: 0.095644] [Throttle:0.031366] [Flaps: 0.000000] [Data Ref: 18972.595703] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.054859] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18949.849609] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.127224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18927.978516] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18907.089844] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.054859] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18883.144531] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.060399] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18861.185547] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.095644] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18838.501953] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.095644] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18818.005859] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.095644] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18792.089844] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.095644] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18767.267578] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.095644] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18743.894531] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.089552] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18719.285156] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.083543] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18695.841797] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.071784] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18668.595703] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18645.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.028969] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18622.332031] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18598.916016] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18577.177734] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18554.447266] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18530.597656] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18506.367188] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18481.353516] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18456.044922] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18432.507813] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18406.714844] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18382.640625] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18356.332031] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18330.105469] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.019659] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18306.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.019659] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18281.119141] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18255.060547] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18228.556641] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18198.285156] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18171.736328] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18140.728516] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18112.859375] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18085.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18055.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18027.632813] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17998.931641] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17971.033203] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17944.218750] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.038928] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17917.232422] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.028969] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17888.105469] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17856.568359] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17828.000000] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17793.699219] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17763.875000] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17732.414063] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17701.023438] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17671.207031] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17639.990234] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17610.513672] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.060399] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17580.503906] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17551.824219] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17520.478516] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17490.816406] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17460.699219] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17430.804688] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17400.669922] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.049429] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17370.386719] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17340.126953] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17310.261719] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17280.966797] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17250.720703] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17218.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17186.080078] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17150.710938] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17118.998047] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17084.980469] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17050.462891] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 17017.773438] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.033875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16982.558594] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.083543] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16947.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.089552] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16912.244141] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.133748] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16876.949219] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16842.359375] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16808.396484] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16769.863281] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16733.968750] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16697.683594] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.140336] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16661.982422] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.133748] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16627.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.089552] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16592.542969] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16556.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16521.072266] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16485.851563] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16450.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16415.134766] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16380.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16345.722656] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16309.672852] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16274.932617] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16240.163086] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16204.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16171.750000] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.337718] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16135.848633] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.485283] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16095.504883] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.485283] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16058.713867] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.459966] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 16017.427734] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.260750] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15980.106445] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.028969] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15942.223633] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15905.280273] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15868.294922] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15831.488281] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15793.602539] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15754.561523] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15720.219727] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15683.799805] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15647.578125] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15613.515625] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15577.361328] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15542.108398] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15506.344727] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15464.809570] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15422.223633] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15379.113281] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15333.836914] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15288.743164] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15243.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15199.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15154.366211] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15109.974609] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15064.999023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.033875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 15021.127930] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.083543] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14977.060547] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14933.292969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.101813] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14889.988281] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.060399] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14851.649414] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14809.173828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14770.189453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14725.958008] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14688.510742] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14650.461914] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14611.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14571.870117] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14529.576172] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14491.626953] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14449.823242] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14414.601563] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14376.494141] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.089552] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14341.301758] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.140336] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14304.479492] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14271.369141] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14236.696289] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14202.005859] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14168.833984] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14136.355469] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14101.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14069.588867] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14037.941406] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14006.142578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13974.089844] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13942.340820] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13911.937500] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13878.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13847.085938] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13816.518555] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13785.406250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13754.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13724.107422] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13693.380859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13662.915039] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13633.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13601.787109] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13566.450195] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13533.348633] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13497.956055] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13460.166016] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13425.225586] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13391.070313] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13356.562500] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13327.217773] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13295.204102] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13264.626953] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13236.207031] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13206.887695] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13178.197266] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13149.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13119.612305] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13089.866211] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13058.737305] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13028.384766] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13000.747070] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12971.011719] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12939.708984] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12909.918945] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12881.240234] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12849.576172] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12820.763672] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12793.367188] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12765.242188] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12732.340820] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12703.978516] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12674.666016] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12644.533203] [T/O: false ][Cruise: false ] +[Elevator: -0.077619] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12616.812500] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12583.529297] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12555.104492] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12529.046875] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12500.829102] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12474.229492] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12445.054688] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12416.290039] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12388.313477] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12360.893555] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12330.521484] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12298.263672] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.028969] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12265.559570] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12234.096680] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12200.976563] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12170.785156] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.028969] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12138.664063] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12106.364258] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12076.690430] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12046.030273] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 12013.276367] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.024224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11980.625000] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11947.576172] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11915.490234] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11882.241211] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11854.168945] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.060399] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11823.821289] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11793.125000] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.114377] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11762.027344] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.133748] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11728.399414] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.133748] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11696.247070] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.127224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11663.581055] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11628.416016] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11592.848633] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11557.938477] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.038928] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11522.579102] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11486.439453] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.038928] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11454.026367] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.077619] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11422.730469] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11393.466797] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11363.581055] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11335.480469] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11305.129883] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11276.196289] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11248.958984] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11220.311523] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11191.316406] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 0.060399] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11164.132813] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 0.071784] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11136.229492] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11105.982422] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11076.766602] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.066042] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11048.066406] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 11016.942383] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10986.478516] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10954.776367] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10922.660156] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10892.960938] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10861.250000] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10830.177734] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10799.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10769.044922] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10738.261719] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10706.376953] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10674.820313] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10641.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10609.988281] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10578.515625] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10542.056641] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10506.243164] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10466.469727] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10424.936523] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10386.881836] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.353573] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10348.542969] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10312.714844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10272.144531] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.275820] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10234.437500] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: -0.770527] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10201.631836] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: -0.127224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10168.423828] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10135.248047] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10102.781250] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.401982] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10067.028320] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 10033.185547] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9998.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9961.694336] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9926.862305] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9892.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9857.487305] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9820.446289] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9786.042969] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9752.250000] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9721.646484] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9690.958008] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9660.627930] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9626.824219] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9596.039063] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9566.621094] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9536.935547] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9507.227539] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9477.825195] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.077619] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9447.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9417.219727] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.260750] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9387.808594] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9358.639648] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9328.997070] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9301.407227] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.231131] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9272.573242] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.306456] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9244.246094] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9216.172852] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9187.777344] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9160.230469] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9132.694336] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.209401] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9103.662109] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.174181] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9074.829102] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.146987] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9046.997070] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.133748] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 9016.617188] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.077619] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8985.625000] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8957.225586] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8927.780273] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8897.787109] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8869.768555] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8840.183594] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8814.181641] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8787.504883] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8760.609375] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8734.959961] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8706.824219] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8679.580078] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8653.938477] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8630.144531] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8605.544922] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8581.112305] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8556.435547] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8533.271484] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.253279] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8510.024414] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.238469] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8485.012695] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.202254] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8460.325195] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8432.965820] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8407.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8381.522461] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8353.591797] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8328.118164] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8303.224609] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8277.618164] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8252.176758] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8228.644531] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8205.547852] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8182.212402] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8158.607422] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8134.801270] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8110.914063] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8086.059082] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8060.217773] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8036.182617] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 8012.999023] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7988.818848] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7965.485352] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7943.174805] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7921.162598] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7899.729004] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7876.933594] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7856.414063] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7835.926758] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7816.313477] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7796.050293] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7778.376465] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7759.822266] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7741.330078] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7722.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7705.942383] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7688.531250] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7671.629395] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7654.524414] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7638.246094] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7623.585449] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7607.890625] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7592.010254] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7577.765625] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7563.927734] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7550.205566] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7536.163574] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7522.956543] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7508.878418] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7495.802734] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7482.443848] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7469.955566] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7457.638184] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7445.803711] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7433.490234] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7421.696289] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7410.419434] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7398.817383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7387.698730] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7377.252930] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7366.837891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7356.654297] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7347.231445] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7337.858398] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7328.869141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7320.611816] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7312.354004] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7304.163574] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7295.705566] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7287.173828] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7279.054688] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.108059] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7271.273438] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7263.789551] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7256.795898] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7250.702637] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7244.500977] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7238.316895] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7233.083496] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7227.848633] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7222.642578] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7218.104492] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7213.200195] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7208.435547] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7203.974609] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7199.430176] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7194.937500] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7190.045410] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7185.559570] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7180.703125] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7175.612305] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7171.291992] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7166.692383] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7162.107422] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.089552] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7157.396973] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7152.479004] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.275820] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7147.714844] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7142.696289] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7137.020020] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7130.631348] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7124.165527] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7117.700684] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7111.223145] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7104.836914] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7098.358398] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7092.155273] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7086.753906] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7080.931152] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: -0.223840] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7075.623047] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.223840] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7070.847656] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.202254] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7065.761230] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7061.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7056.211914] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7051.356445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7046.740234] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7042.333008] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7038.158203] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7034.115723] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7030.076172] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7026.193359] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7022.610352] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7019.574219] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7016.294434] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7013.291016] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7010.586914] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7007.801270] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7005.040527] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7002.041016] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6999.152344] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6996.276855] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6993.623535] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6990.966797] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6988.485352] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6985.893555] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6983.352539] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6980.881348] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6978.447754] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6976.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6973.947266] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6971.962402] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6969.878418] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6967.827637] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6965.847168] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.015298] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6963.923340] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.033875] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6962.017090] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.071784] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6960.177246] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.071784] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6958.441406] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.033875] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6956.748535] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6955.194336] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6953.659668] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6952.200684] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6950.776855] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6949.418457] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6948.049316] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6946.654785] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6945.379883] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6944.149902] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6942.991699] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6941.775391] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6940.670410] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6939.480469] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6938.386719] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6937.339355] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6936.351074] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6935.432129] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6934.437500] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6933.501953] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6932.549805] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6931.571289] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6930.622070] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.066042] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6929.639648] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.133748] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6928.650391] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.181120] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6927.719238] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.181120] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6926.845703] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6925.927246] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6925.020996] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.127224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6924.123047] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6923.229980] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6922.336426] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.146987] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6921.405273] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.133748] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6920.543457] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6919.596680] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6918.584473] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6917.524414] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6916.419434] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6915.195801] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6913.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6912.605957] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6911.291504] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6909.965332] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6908.415527] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6906.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6905.356934] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6903.912598] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6902.199219] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6900.612305] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6899.051270] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6897.606445] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6896.165527] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.033875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6894.851074] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.054859] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6893.543457] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.077619] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6892.294434] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.101813] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6891.143066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.140336] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6890.006348] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.153698] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6888.939453] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.174181] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6887.786621] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.174181] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6886.621582] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.181120] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6885.619141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.209401] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6884.648926] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.077619] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6883.686035] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.377622] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6882.751465] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.554079] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6881.911133] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.459966] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6880.979004] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.369570] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6879.937988] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.353573] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6878.891113] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.268264] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6877.774414] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.260750] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6876.635742] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.223840] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6875.341309] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6874.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6872.707520] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6871.271484] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6869.754883] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6868.181152] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6866.495605] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6864.814941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6863.144043] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6861.573730] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6859.899902] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6858.455078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6857.026367] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6855.720215] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6854.574219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.174181] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6853.588379] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.167297] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6852.678223] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.167297] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6851.901367] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.167297] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6851.242676] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.160469] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6850.665527] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.153698] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6850.179688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.033876] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.782715] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.487305] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.282227] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.152832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.097656] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.197266] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.354980] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.592285] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6849.885254] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6850.249023] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6850.676270] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6851.158203] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6851.692383] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6852.292969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6852.936035] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6853.627441] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6854.418457] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6855.285645] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6856.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6857.030762] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6857.906250] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6858.800781] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6859.745605] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6860.719238] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6861.824219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6862.835938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6863.909668] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6864.995605] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6866.137695] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6867.314941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6868.533691] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6869.820313] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6871.120117] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6872.563477] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6874.216309] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6875.871094] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6877.589844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6879.289551] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6880.959473] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6882.466309] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6883.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6885.515137] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6887.063965] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6888.558594] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6890.040527] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6891.518555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6892.951660] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6894.464844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6896.038086] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6897.630859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6899.297363] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6900.997559] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6902.656738] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6904.315918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6906.013184] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6907.706055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6909.471191] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6911.245605] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6913.018555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6914.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6916.668457] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6918.560547] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6920.458984] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6922.357910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6924.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6926.231445] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6928.143066] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6930.066895] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6932.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6933.985352] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6936.047363] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6938.081543] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.038928] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6940.061035] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6942.074707] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6944.056152] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6946.065430] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6948.114258] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6950.130371] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6952.137207] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6954.150391] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6956.195313] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6958.244141] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6960.341309] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6962.349609] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6964.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6966.450195] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6968.466797] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6970.570801] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6972.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6974.819824] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6977.061035] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6979.432617] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6981.712402] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6983.971191] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6986.219238] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6988.521973] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6990.766602] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6993.019531] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6995.304199] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6997.585449] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6999.915527] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7002.210938] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7004.442383] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7006.693848] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7008.806152] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7011.017578] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7013.176270] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7015.291016] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7017.336426] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7019.423340] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7021.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7023.588379] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7025.596191] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7027.573730] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7029.579590] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7031.546875] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7033.541016] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7035.485352] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7037.451660] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7039.414551] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7041.395020] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7043.338379] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7045.273926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7047.209961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7049.161133] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7051.083496] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7053.026855] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7054.941895] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7056.923828] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7058.871582] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7060.854980] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7062.885742] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7064.833008] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7066.722656] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7068.635742] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7070.602051] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7072.497070] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7074.452148] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7076.359375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7078.305664] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7080.223145] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7082.154785] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7084.056152] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7085.985840] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7087.896484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7089.831055] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7091.714844] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7093.581055] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7095.376465] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7097.240234] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7099.054199] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7100.894043] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7102.689941] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7104.491211] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7106.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7108.091309] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7109.807129] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7111.521973] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7113.232910] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7114.939453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7116.578125] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7118.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7119.845703] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7121.467773] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7123.042969] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7124.617188] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7126.154297] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7127.677734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7129.191406] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7130.693848] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7132.137207] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7133.607910] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7134.998535] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7136.408691] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.033876] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7137.750977] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7139.127930] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.033876] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7140.457520] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7141.796387] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7143.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7144.411621] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7145.678223] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7146.925781] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7148.130371] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7149.326660] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7150.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7151.665039] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7152.769043] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7153.834961] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7154.904297] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7156.005859] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7157.121094] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7158.259766] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7159.431641] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7160.598145] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.101813] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7161.796875] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7162.988770] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7164.209961] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7165.481445] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7166.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7168.155762] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7169.574707] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7171.006836] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7172.520508] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7174.051758] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7175.637695] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7177.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7178.968262] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7180.644531] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7182.343750] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7183.923340] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7185.556152] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7187.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7188.948242] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7190.715820] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7192.413086] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7194.284668] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7196.006836] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7197.770996] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7199.555176] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7201.313477] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7203.062500] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7204.790527] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7206.494629] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7208.241211] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7209.995117] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7211.688965] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7213.311523] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7214.951660] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7216.504395] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7218.068359] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7219.589355] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7221.062988] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7222.452637] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7223.879883] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7225.309082] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7226.623535] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7227.943359] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7229.205566] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7230.444336] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7231.662598] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7232.850098] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7233.929688] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7235.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7236.060547] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7237.021973] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7237.962402] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7238.899414] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7239.784180] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7240.637207] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7241.425293] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7242.178711] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7242.880859] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7243.566406] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7244.199219] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7244.798828] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7245.358398] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7245.887695] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7246.351074] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7246.767578] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.376465] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.565918] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.683594] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.721191] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.569336] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.381836] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7247.123535] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7246.786133] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7246.367676] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7245.871582] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7245.275391] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7244.623535] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7243.910645] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7243.108887] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7242.193848] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7241.188477] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7240.163086] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7239.062500] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7237.906250] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7236.706543] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7235.404297] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7234.258301] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7232.918457] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7231.379395] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7229.765625] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7228.049805] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7226.294922] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7224.459473] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7222.507324] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7220.505859] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7218.444824] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7216.269531] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7214.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7211.748047] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7209.526855] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7207.631348] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7205.576660] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7203.212402] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7200.829590] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7198.393555] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7195.857910] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7193.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7190.548828] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: -0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7187.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7185.030273] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7182.205566] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7179.356934] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7176.376953] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7173.297852] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7170.482422] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7167.920410] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7164.908203] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7161.735352] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7158.413086] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7154.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7151.507324] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7142.611816] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7138.955078] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7135.541016] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7131.617676] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7127.786133] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7123.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7119.824219] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7115.945801] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.007337] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7111.887207] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7107.725586] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7103.330566] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7098.929688] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7094.348145] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7089.761719] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7085.061523] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7080.374512] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7074.877930] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7070.046387] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7065.054688] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7059.997070] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7054.983398] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7049.885742] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7044.560059] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7039.212402] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7033.666016] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7028.080078] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7022.515137] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7017.011230] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7011.112305] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 7005.410156] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6999.625000] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6993.894043] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6987.908203] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6982.303711] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6977.193359] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6971.396973] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6965.413574] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6959.099121] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6952.991211] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6946.686523] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6940.374023] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6933.923340] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6927.620117] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6921.034668] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6914.328125] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6907.683105] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6901.011719] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6894.319824] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6887.491699] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6880.723633] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6873.720703] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6866.668457] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6859.388184] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6852.189941] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6845.299805] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6838.258789] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6831.265137] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6824.414063] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6817.137207] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6810.035645] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6802.732422] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6795.311035] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6787.624023] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6779.870117] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6772.036133] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6764.133301] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6756.058105] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6748.274902] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6740.307617] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6732.007813] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6723.916504] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6715.707520] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6707.815918] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6700.911621] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6693.831055] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6685.679199] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6677.381348] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6668.934570] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6660.703125] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6652.481934] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6644.263184] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6636.045898] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6627.720215] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.033876] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6619.362793] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6611.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6602.896973] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6594.722656] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6586.214844] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6577.801758] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6569.433594] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6561.008301] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6552.823730] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6544.615234] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6536.274414] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6527.620117] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6519.132324] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6510.322754] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6501.554688] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6492.940430] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6485.082520] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6477.406738] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6468.700195] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6460.098633] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6451.585938] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6442.445801] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6433.625977] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6425.123047] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6416.335938] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6407.466797] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6398.953125] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6390.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6381.522461] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6372.687012] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6363.759277] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6354.825684] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.000981] [Yaw: -0.705946] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6346.050293] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6337.333496] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.000981] [Yaw: -0.922194] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6328.577637] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6319.648438] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6310.871582] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6301.903320] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6293.244629] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6284.371582] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.003875] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6275.642578] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.007337] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6267.099609] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6259.164551] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6251.555664] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6242.863770] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6234.146484] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6225.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6216.488770] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6207.501465] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6198.456055] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6189.353027] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6180.599609] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6171.842773] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6162.866699] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6153.759766] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6146.153809] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6137.766602] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6128.601074] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6119.444824] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6110.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6101.538574] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6093.771973] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6084.694336] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6076.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6067.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6059.615234] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6050.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6042.260742] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6033.409180] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6024.541992] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6015.211426] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 6006.052734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5996.188477] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5986.314453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5976.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5966.897461] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5957.575684] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5947.064453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5937.836914] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5928.175293] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5918.216797] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5908.395508] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5899.089355] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5890.043457] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5880.512207] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5869.635254] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5860.499023] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5850.637207] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5841.020508] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5830.994141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5821.349121] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5810.726074] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5801.583984] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5790.303223] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5778.901855] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5769.427734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5758.324707] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5746.439453] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5736.365723] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5722.717773] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5712.132324] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5702.238770] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5692.348633] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5680.950195] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5669.812500] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5657.260254] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5644.472168] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5630.922363] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5617.906250] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5602.616699] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5586.233887] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5569.751953] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5554.192383] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5538.889648] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5523.766113] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5508.054199] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5490.828125] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5473.005859] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5454.533691] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5436.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5418.863281] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5399.920898] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5381.479492] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5363.161621] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5344.250977] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5325.851563] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5308.306641] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5290.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5272.883789] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5252.782715] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5233.077637] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5213.470703] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5193.702637] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5173.279297] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5154.912109] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5135.091797] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5117.004883] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5097.819336] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5078.492676] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5060.110352] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5041.700195] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5023.917969] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 5003.727539] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4983.758301] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4964.382324] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4944.629395] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4925.307617] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4907.322754] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4889.725098] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4873.304199] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4854.922363] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.007337] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4837.588379] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.007337] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4822.346191] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.015298] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4806.613281] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.015298] [Yaw: -0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4791.270020] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.015298] [Yaw: -0.188113] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4775.634766] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.019659] [Yaw: -0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4759.180664] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.019659] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4744.137695] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4729.676270] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4715.312012] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4701.188965] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4686.702148] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4673.098145] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4660.337402] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4648.539063] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.095644] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4638.521484] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.101813] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4628.350098] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.083543] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4618.267578] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4609.345215] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.044116] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4600.965820] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.049429] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4592.141602] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4584.187988] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.060399] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4576.132324] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.060399] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4568.195801] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.060399] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4560.062012] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4551.987305] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4544.142090] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4536.672852] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4529.632324] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.060399] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4522.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4515.277344] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.114377] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4508.699707] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.181120] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4501.918457] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4495.726563] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4489.544434] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4483.041504] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4476.889648] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.174181] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4471.413574] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4465.937500] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4460.967773] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4456.500977] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.038928] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4452.114746] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4448.356445] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.434924] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4444.741699] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.188113] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4441.323730] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.209401] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4438.211426] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.133748] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4435.198730] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.779844] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4432.061035] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.751960] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4429.489746] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4427.200684] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4424.973633] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4422.844238] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4420.609375] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.493781] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4418.515137] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.589143] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4416.421387] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4414.393066] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4412.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4410.253418] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4408.393066] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.140336] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4406.252441] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.028969] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4404.540527] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4402.679688] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4400.858398] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4399.054199] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.071784] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4397.158691] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4395.203125] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4393.291504] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4391.422852] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4389.373047] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4387.263672] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4385.220215] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4383.233887] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4381.177246] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4378.944336] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4376.846191] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4374.718750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4372.654785] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4370.456055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4368.227051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4365.798340] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4363.605957] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4361.107422] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4358.786133] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4356.421387] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4354.145996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4351.648926] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4349.135742] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4346.791504] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4344.430664] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4342.264648] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4339.981934] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4337.406738] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4334.895020] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4332.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4329.227539] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4326.657715] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4323.922852] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4321.145508] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4318.400391] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4315.740723] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4312.767090] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4309.769043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4306.554688] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4303.972656] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4301.282715] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4298.622559] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4295.661621] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4293.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4290.445801] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4287.870605] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4285.383789] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4282.930176] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4280.548340] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4278.125488] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4275.807617] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4273.344727] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4270.810547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4268.275391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4265.943359] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4263.532227] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4261.032227] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4258.414063] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4255.625977] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4253.022461] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4250.263184] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4247.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4244.606934] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4241.965332] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4239.274902] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4236.301758] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4233.235840] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4230.072266] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4226.781250] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.060399] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4223.757324] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.054859] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4220.848145] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.054859] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4217.912598] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.054859] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4214.978516] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.054859] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4212.328125] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.054859] [Yaw: -0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4209.924316] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: -0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4207.740234] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4205.587402] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.044116] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4203.567383] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.044116] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4201.443359] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.038928] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4199.605957] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.038928] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4197.784668] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4196.280273] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4194.854980] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4193.571777] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4192.400879] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4191.319336] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4190.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4189.536621] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4188.744629] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4188.078125] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4187.540527] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4187.028320] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4186.633789] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4186.324219] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4186.078613] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.889648] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.729492] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.607910] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.512207] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.432617] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.361816] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.290527] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.210449] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.118164] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4185.014648] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.898438] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.759766] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.604004] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.444824] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.266113] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4184.082520] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.120767] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4183.866211] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.268264] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4183.616211] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4183.368652] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.146987] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4183.079102] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.369570] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4182.751465] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.167297] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4182.404785] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.120767] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4182.014160] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.120767] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4181.637695] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.071784] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4181.212891] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.066042] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4180.776855] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4180.305176] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4179.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4179.180176] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4178.608398] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.083543] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4178.083984] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.127224] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4177.446289] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.077619] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4176.871582] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.071784] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4176.321289] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.066042] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4175.804688] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4175.257813] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4174.721680] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4174.186523] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.028969] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4173.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4173.210449] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4172.749023] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4172.231445] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4171.758301] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4171.299316] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4170.859375] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4170.424316] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4170.007324] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4169.583496] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4169.172852] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4168.764648] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4168.366699] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4167.965332] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4167.574707] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4167.255859] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 4166.926270] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.026925] [Flaps: 0.000000] [Data Ref: 4166.613770] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.033875] [Throttle:0.061778] [Flaps: 0.000000] [Data Ref: 4166.272461] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.033875] [Throttle:0.095326] [Flaps: 0.000000] [Data Ref: 4165.953613] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.028969] [Throttle:0.132617] [Flaps: 0.000000] [Data Ref: 4165.588379] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.024224] [Throttle:0.170557] [Flaps: 0.000000] [Data Ref: 4165.265625] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.204084] [Flaps: 0.000000] [Data Ref: 4164.946777] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.237560] [Flaps: 0.000000] [Data Ref: 4164.650879] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.271237] [Flaps: 0.000000] [Data Ref: 4164.309570] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.306592] [Flaps: 0.000000] [Data Ref: 4164.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.339378] [Flaps: 0.000000] [Data Ref: 4163.673828] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.007337] [Yaw: -0.028969] [Throttle:0.378000] [Flaps: 0.000000] [Data Ref: 4163.300293] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.007337] [Yaw: -0.028969] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4162.977051] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4162.628906] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4162.270996] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4161.900391] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4161.552734] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4161.151855] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4160.771484] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4160.358398] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4159.934570] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4159.492188] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4159.020020] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4158.593750] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4158.076660] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4157.612305] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4157.051270] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.389072] [Flaps: 0.000000] [Data Ref: 4156.464355] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:0.414252] [Flaps: 0.000000] [Data Ref: 4155.948730] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.003875] [Yaw: 0.071784] [Throttle:0.447118] [Flaps: 0.000000] [Data Ref: 4155.358887] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.003875] [Yaw: 0.044116] [Throttle:0.484026] [Flaps: 0.000000] [Data Ref: 4154.808105] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.003875] [Yaw: 0.044116] [Throttle:0.515852] [Flaps: 0.000000] [Data Ref: 4154.198730] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.003875] [Yaw: 0.049429] [Throttle:0.553314] [Flaps: 0.000000] [Data Ref: 4153.490723] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.003875] [Yaw: 0.071784] [Throttle:0.592940] [Flaps: 0.000000] [Data Ref: 4152.847656] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: 0.095644] [Throttle:0.624800] [Flaps: 0.000000] [Data Ref: 4152.182617] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.660874] [Flaps: 0.000000] [Data Ref: 4151.490723] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: 0.153698] [Throttle:0.693141] [Flaps: 0.000000] [Data Ref: 4150.815918] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.160469] [Throttle:0.727497] [Flaps: 0.000000] [Data Ref: 4150.121094] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.160469] [Throttle:0.759094] [Flaps: 0.000000] [Data Ref: 4149.356445] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.167297] [Throttle:0.793373] [Flaps: 0.000000] [Data Ref: 4148.626465] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.167297] [Throttle:0.826007] [Flaps: 0.000000] [Data Ref: 4147.778320] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.167297] [Throttle:0.862501] [Flaps: 0.000000] [Data Ref: 4146.961914] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.167297] [Throttle:0.894850] [Flaps: 0.000000] [Data Ref: 4146.067383] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.167297] [Throttle:0.931676] [Flaps: 0.000000] [Data Ref: 4145.129883] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.015298] [Yaw: 0.167297] [Throttle:0.964021] [Flaps: 0.000000] [Data Ref: 4144.236328] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: 0.167297] [Throttle:0.998022] [Flaps: 0.000000] [Data Ref: 4143.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4141.966309] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4140.713867] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.028969] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4139.389648] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.033875] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4138.183105] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.033875] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4136.747070] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4135.245605] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4133.681641] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4131.885742] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4129.997559] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4128.053711] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4125.966309] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4123.736816] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4121.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4118.902832] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.038928] [Yaw: 0.314215] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4116.236816] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.038928] [Yaw: 0.361554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4113.375977] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.038928] [Yaw: 0.353573] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4109.393066] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.038928] [Yaw: 0.337718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4106.326172] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: 0.322011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4103.169434] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.015298] [Yaw: 0.314215] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4099.704102] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.306456] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4096.140625] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.298737] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4092.376709] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4088.356934] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4084.461914] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4080.653076] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4076.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4072.543213] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4068.071289] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: 0.291058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4064.177979] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.028969] [Yaw: 0.283419] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4059.512451] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.044116] [Yaw: 0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4054.530029] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.054859] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4049.552246] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.089552] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4044.940918] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.140336] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4039.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.140336] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4034.798828] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.146987] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4029.324707] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.060399] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4024.498535] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.011174] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4018.360107] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.049429] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4012.366943] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.054859] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4006.606934] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.054859] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 4000.433838] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.049429] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3994.463867] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.049429] [Yaw: 0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3988.018555] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.049429] [Yaw: 0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3981.911621] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.049429] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3975.853271] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.049429] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3969.550537] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.049429] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3963.413330] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.049429] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3957.140381] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.024224] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3951.191650] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.024224] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3945.013672] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3938.938477] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.038928] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3932.736816] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.038928] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3926.377930] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.049429] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3920.548096] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.044116] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3913.719971] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.044116] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3907.697021] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.028969] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3901.334961] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.024224] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3894.977783] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.011174] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3889.284424] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.003875] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3883.771729] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3878.704834] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3872.880615] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3866.890137] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3861.755371] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3855.831055] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3849.744141] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3843.804199] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3837.904785] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3831.986328] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3826.214600] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3820.254639] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3814.297119] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3808.190918] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3802.047363] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3796.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3789.824951] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3783.525635] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3777.404541] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3771.158691] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.181120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3764.960449] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.015298] [Yaw: 0.114377] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 3759.490967] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.995051] [Flaps: 0.000000] [Data Ref: 3753.828369] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.011174] [Yaw: -0.044116] [Throttle:0.959831] [Flaps: 0.000000] [Data Ref: 3748.174561] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.011174] [Yaw: -0.044116] [Throttle:0.921625] [Flaps: 0.000000] [Data Ref: 3740.255615] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.007337] [Yaw: -0.044116] [Throttle:0.873305] [Flaps: 0.000000] [Data Ref: 3731.850830] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.007337] [Yaw: -0.038928] [Throttle:0.820318] [Flaps: 0.000000] [Data Ref: 3725.527100] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.007337] [Yaw: -0.024224] [Throttle:0.789421] [Flaps: 0.000000] [Data Ref: 3720.412598] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.757690] [Flaps: 0.000000] [Data Ref: 3714.492432] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.722447] [Flaps: 0.000000] [Data Ref: 3708.733398] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.060399] [Yaw: -0.028969] [Throttle:0.686003] [Flaps: 0.000000] [Data Ref: 3702.149902] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.054859] [Yaw: -0.044116] [Throttle:0.647247] [Flaps: 0.000000] [Data Ref: 3695.509277] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.049429] [Yaw: -0.054859] [Throttle:0.611738] [Flaps: 0.000000] [Data Ref: 3689.918945] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.049429] [Yaw: -0.054859] [Throttle:0.578680] [Flaps: 0.000000] [Data Ref: 3683.603027] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.024224] [Yaw: -0.054859] [Throttle:0.541212] [Flaps: 0.000000] [Data Ref: 3677.706299] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.000981] [Yaw: -0.049429] [Throttle:0.508254] [Flaps: 0.000000] [Data Ref: 3671.778809] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.011174] [Yaw: -0.044116] [Throttle:0.472169] [Flaps: 0.000000] [Data Ref: 3665.793701] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:0.440028] [Flaps: 0.000000] [Data Ref: 3659.258057] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.015298] [Yaw: 0.028969] [Throttle:0.399001] [Flaps: 0.000000] [Data Ref: 3652.202637] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.019659] [Yaw: 0.089552] [Throttle:0.358822] [Flaps: 0.000000] [Data Ref: 3645.182617] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.060399] [Yaw: 0.153698] [Throttle:0.319023] [Flaps: 0.000000] [Data Ref: 3638.743652] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -0.095643] [Yaw: 0.153698] [Throttle:0.281393] [Flaps: 0.000000] [Data Ref: 3632.328369] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.089552] [Yaw: 0.153698] [Throttle:0.244158] [Flaps: 0.000000] [Data Ref: 3626.034424] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.015298] [Yaw: 0.140336] [Throttle:0.206219] [Flaps: 0.000000] [Data Ref: 3619.611084] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.054859] [Yaw: 0.120767] [Throttle:0.167830] [Flaps: 0.000000] [Data Ref: 3613.308350] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.049429] [Yaw: 0.095644] [Throttle:0.129708] [Flaps: 0.000000] [Data Ref: 3607.473145] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.049429] [Yaw: 0.089552] [Throttle:0.096083] [Flaps: 0.000000] [Data Ref: 3602.132568] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.049429] [Yaw: 0.083543] [Throttle:0.060424] [Flaps: 0.000000] [Data Ref: 3596.137207] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.083543] [Throttle:0.024771] [Flaps: 0.000000] [Data Ref: 3591.042725] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.033875] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3585.111328] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.033875] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3579.665527] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.015298] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3574.890381] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3569.643555] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.011174] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3565.177002] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3560.034912] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3554.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3549.564941] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3545.001953] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3540.196777] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3535.151367] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3530.141846] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3525.133057] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3520.125732] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3515.010010] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3509.913086] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3504.852783] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3499.763916] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3494.662842] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3489.610596] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3484.544678] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3479.600098] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3475.246582] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3470.822510] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3465.969971] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3461.728760] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3456.677979] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3452.083740] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3447.597900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3442.555664] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3437.505127] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3433.129639] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3428.264160] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3423.903076] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3419.421631] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3414.964111] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3410.296143] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3405.906982] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3401.498291] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3396.649902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3392.128418] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3387.063965] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3381.869873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3377.372559] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3372.271729] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3366.819580] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3362.248291] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3357.761963] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3352.812744] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3347.703613] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3342.774902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3337.584229] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3332.192871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3326.725098] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3321.355469] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3315.569336] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3308.967041] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3303.243408] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3297.005127] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3290.475830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3283.650635] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3276.330078] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3268.829834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3261.330811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3254.117188] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3246.755371] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3237.526611] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3229.376953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3221.472656] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3214.234863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3206.812988] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3199.211914] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3192.057129] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3184.867432] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.174181] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3177.343750] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.283419] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3169.370605] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.377622] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3161.650146] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.377622] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3153.526123] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.418388] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3145.319336] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.418388] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3137.338623] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.361554] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3128.592285] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.353572] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3119.958740] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.361554] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3111.023682] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.369570] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3102.079590] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3091.571045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3080.471924] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3068.883301] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3056.705566] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3044.978027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3034.220947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3022.156982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 3009.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2998.456543] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2987.473145] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2976.667725] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2965.901123] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2954.997559] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2941.215088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2930.356934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2918.744873] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2907.086914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2896.403564] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2884.760010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2872.847900] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2860.293945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2849.730225] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2837.313721] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2825.027832] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2812.783203] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2800.310547] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2789.027832] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2776.493164] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2766.033936] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.077619] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2753.831299] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2741.830811] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.101813] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2731.214844] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2720.209473] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2708.807129] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2698.244141] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2687.529785] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2676.882324] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2665.910645] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2654.444336] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2644.082520] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2633.713623] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2623.747803] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2613.960693] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2603.869141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2593.141602] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2582.923096] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2572.487793] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2561.723389] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2551.507324] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2542.310059] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2533.253662] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2524.214600] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2515.109619] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2507.136719] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2498.916260] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2490.069336] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2481.857422] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2473.221436] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2464.694580] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2456.583496] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2448.391846] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2440.350342] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2433.050049] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2424.649414] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2417.599365] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2409.348877] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2402.724121] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2395.415527] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2388.243896] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2381.436768] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2373.883789] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2366.806885] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2359.882813] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2353.338867] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2346.097656] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2339.375732] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2332.842041] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2326.104492] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.181120] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2319.888428] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2313.181641] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2306.695801] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2300.255615] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2294.147217] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2287.988770] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2282.055908] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2275.819824] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2270.050293] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.071784] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2263.794922] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2257.170654] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2250.048828] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2244.528320] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2237.564453] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2231.546631] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2225.398438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2219.501465] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2213.679199] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2208.270508] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2201.783691] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2196.598389] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2191.195313] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2185.455322] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2179.510498] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2173.992188] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2168.117188] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2163.321533] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2158.396240] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2152.671387] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2147.021484] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2142.159912] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2136.919678] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2131.586182] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2126.768799] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2121.663086] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2116.587402] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2111.679688] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2106.142822] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2100.762451] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2095.414795] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2089.725586] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2084.019043] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2078.710205] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2073.763916] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2069.029053] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2063.568848] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2058.604004] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2053.082031] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2047.888916] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2043.076904] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2037.586914] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2032.403931] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2027.586914] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2021.643555] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2015.739014] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2009.810425] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 2003.902344] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1997.806763] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1991.711792] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1985.932129] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1979.962769] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1974.424927] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1968.432617] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1963.005493] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1957.208740] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1951.580566] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1945.192505] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1939.696899] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1934.394531] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1927.985962] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1922.225098] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1916.266357] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1910.656006] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1904.818359] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1898.206909] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1892.175049] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1885.765869] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.038928] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1879.435303] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1872.865234] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1865.982666] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1859.992310] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1853.277466] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1846.624756] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.114377] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1839.337280] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1832.933594] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1825.647705] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.120767] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1818.679321] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.114377] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1811.509033] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.071784] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1804.724609] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1798.054810] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1791.064697] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1784.027344] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1776.644775] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1769.837524] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1763.387329] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1756.976807] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1750.790649] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1744.595703] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1738.574951] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1732.713989] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1726.336182] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1720.367676] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1714.425537] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1708.701660] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1702.746704] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.019659] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1696.130371] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1690.187378] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1684.453857] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.101813] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1678.255493] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1672.704224] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.083543] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1666.970459] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1661.467651] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 1655.785156] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.029148] [Flaps: 0.000000] [Data Ref: 1650.219727] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1644.725098] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1639.254883] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1633.690552] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1628.269409] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1623.031372] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1617.687134] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1612.490845] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1607.051636] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1601.710571] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1596.506714] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1590.517944] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1584.660767] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1578.640381] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1572.346924] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1565.884521] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1559.621704] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1553.381470] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1547.334595] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1540.750122] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1533.803223] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1526.958252] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1520.008301] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1512.961792] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1506.342163] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1499.725830] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.060399] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1493.213135] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1486.317505] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1479.141235] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1471.822876] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1465.310791] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1458.348022] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1451.764893] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1445.133423] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1438.586670] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1431.717407] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1425.064087] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1418.105713] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1411.441162] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1405.092529] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1398.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1392.614746] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1386.391846] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1380.231934] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1374.318359] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.083543] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1368.149902] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.101813] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1362.335815] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.101813] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1356.260010] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1350.418701] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1344.624634] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1338.798340] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.188113] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1332.846924] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.188113] [Yaw: 0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1327.026733] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.174181] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1320.758545] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1315.355347] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1309.748535] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.146987] [Yaw: -0.003875] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1303.848022] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.114377] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1297.992188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1292.320313] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1286.263306] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1280.611206] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.174181] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1274.697876] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.174181] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1268.845337] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.195158] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1263.059448] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.195158] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1257.233887] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.223840] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1250.664795] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.202254] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1244.729370] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: -0.003875] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1238.190308] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1232.102905] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1225.805298] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.028969] [Yaw: -0.007337] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1219.394287] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1212.942383] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.036999] [Flaps: 0.000000] [Data Ref: 1206.493164] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.082876] [Flaps: 0.000000] [Data Ref: 1200.298340] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1193.841064] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1187.781860] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.101813] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1181.363770] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.060399] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1174.903564] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.028969] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1168.915405] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1162.557373] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1156.629639] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1150.481201] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1144.214600] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1138.475586] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1132.074219] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1126.395996] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.038928] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1120.570923] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1114.322266] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1108.124756] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1102.284424] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1096.393188] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1089.973022] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1083.750488] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1078.061279] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1072.041870] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.174181] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1066.610840] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1061.320679] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1055.341919] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1049.401855] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1043.000366] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1036.295532] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1029.787231] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1023.631226] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1017.497742] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.066042] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1010.941101] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 1005.055969] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 999.050354] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.060399] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 992.288635] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 986.502930] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 980.553284] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 974.982422] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 969.309509] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 963.537415] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 958.145203] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 952.222595] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 946.556458] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 941.025452] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 935.263489] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 929.769287] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 924.042786] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 918.018311] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 912.226685] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 906.579468] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 901.226135] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 895.591980] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.033876] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 890.093323] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 884.727173] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 878.949463] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.015298] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 873.391602] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.049429] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 868.006409] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 862.767883] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 857.187927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 852.291870] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 847.018188] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.060399] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 841.941162] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.049429] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 837.317261] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 832.542053] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 828.026001] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 823.462646] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 819.058044] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 814.446350] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.174181] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 810.294067] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.160469] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 806.233154] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.140336] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 802.181702] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 798.350708] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 794.394470] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 790.613770] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 786.930786] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 783.304138] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 779.788025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 776.273132] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 772.910461] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 769.588135] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 766.335876] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 762.909790] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 759.575073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 756.423340] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.536710] [Yaw: -0.011174] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 752.934143] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.502310] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 749.773132] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 746.514282] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 743.447571] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 740.178284] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 736.642029] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 732.969971] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 729.366455] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.133748] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 725.841858] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 722.305115] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 718.729797] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 715.578552] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 712.320557] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 709.207214] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 706.160339] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 703.174683] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 700.322205] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 697.647156] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 694.876770] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: 0.007337] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 692.034973] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 689.489807] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 686.763489] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 684.004028] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 681.232727] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 678.407471] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 675.833984] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 673.008850] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 670.349792] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: -0.007337] [Throttle:0.089114] [Flaps: 0.000000] [Data Ref: 667.639404] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.007337] [Yaw: -0.188113] [Throttle:0.119728] [Flaps: 0.000000] [Data Ref: 665.086731] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 662.609314] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 660.268494] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 658.080078] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 656.012573] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 654.132446] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.049429] [Yaw: 0.011174] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 652.421875] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.033876] [Yaw: 0.011174] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 650.891479] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 649.353516] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.049429] [Throttle:0.140094] [Flaps: 0.000000] [Data Ref: 648.082764] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.049429] [Throttle:0.096693] [Flaps: 0.000000] [Data Ref: 646.768311] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.051072] [Flaps: 0.000000] [Data Ref: 645.660950] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 644.478882] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: 0.003875] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 643.416748] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 642.357178] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.019659] [Yaw: 0.007337] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 641.433350] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.024224] [Yaw: 0.007337] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 640.488098] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.028969] [Yaw: 0.007337] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 639.518677] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.003875] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 638.649597] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.018848] [Flaps: 0.000000] [Data Ref: 637.643616] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.001046] [Flaps: 0.000000] [Data Ref: 636.775574] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 635.813660] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 634.806641] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 633.886292] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 632.902283] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.028969] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 631.915161] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 630.927185] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 630.055786] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 629.106812] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.011174] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 628.218933] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 627.291870] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 626.386353] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 625.460083] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 624.540649] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 623.553711] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 622.558533] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 621.493958] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.028969] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 620.380798] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.038928] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 619.212158] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 618.083862] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 616.837158] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 615.550964] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.089552] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 614.197693] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.066042] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 612.793091] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 611.392334] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.015298] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 610.012268] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 608.639832] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 607.168030] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 605.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 604.575623] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 603.070801] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 601.749084] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 600.241516] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 598.811646] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 597.390869] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 595.774475] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.049429] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 594.098511] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.127224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 592.430664] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.120767] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 590.838806] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.028969] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 589.180786] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 587.526245] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 585.988037] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.060399] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 584.368469] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 582.883118] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 581.368103] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.077619] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 580.035828] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.077619] [Yaw: 0.015298] [Throttle:0.011244] [Flaps: 0.000000] [Data Ref: 578.807068] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.071784] [Yaw: 0.015298] [Throttle:0.051916] [Flaps: 0.000000] [Data Ref: 577.407410] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.033875] [Yaw: 0.024224] [Throttle:0.097660] [Flaps: 0.000000] [Data Ref: 576.052002] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:0.117153] [Flaps: 0.000000] [Data Ref: 574.613708] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: 0.028969] [Throttle:0.117153] [Flaps: 0.000000] [Data Ref: 573.111633] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.049429] [Yaw: 0.066042] [Throttle:0.123165] [Flaps: 0.000000] [Data Ref: 571.699890] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.049429] [Yaw: 0.049429] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 570.209106] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: 0.044116] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 568.710144] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.019659] [Yaw: 0.044116] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 567.284668] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 565.789246] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.019659] [Yaw: 0.044116] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 564.251648] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: 0.007337] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 562.743103] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.071784] [Yaw: 0.007337] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 561.172363] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.011174] [Throttle:0.142979] [Flaps: 0.000000] [Data Ref: 559.752808] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.066042] [Throttle:0.164386] [Flaps: 0.000000] [Data Ref: 558.174866] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.033875] [Yaw: 0.011174] [Throttle:0.178327] [Flaps: 0.000000] [Data Ref: 556.763000] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.019659] [Yaw: 0.011174] [Throttle:0.178327] [Flaps: 0.000000] [Data Ref: 555.303711] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: 0.146987] [Throttle:0.197642] [Flaps: 0.000000] [Data Ref: 553.905029] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.217575] [Flaps: 0.000000] [Data Ref: 552.501587] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.224366] [Flaps: 0.000000] [Data Ref: 551.100098] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.269628] [Flaps: 0.000000] [Data Ref: 549.670166] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.167297] [Yaw: 0.011174] [Throttle:0.269628] [Flaps: 0.000000] [Data Ref: 548.326538] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.223840] [Yaw: -0.024224] [Throttle:0.269628] [Flaps: 0.000000] [Data Ref: 546.899414] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.202254] [Yaw: -0.003875] [Throttle:0.303588] [Flaps: 0.000000] [Data Ref: 545.476501] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.303588] [Flaps: 0.000000] [Data Ref: 544.005188] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.331254] [Flaps: 0.000000] [Data Ref: 542.623718] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.019659] [Yaw: 0.028969] [Throttle:0.375388] [Flaps: 0.000000] [Data Ref: 541.082947] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.382613] [Flaps: 0.000000] [Data Ref: 539.640747] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.028969] [Yaw: -0.038928] [Throttle:0.422839] [Flaps: 0.000000] [Data Ref: 538.129822] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.015298] [Yaw: -0.054859] [Throttle:0.436196] [Flaps: 0.000000] [Data Ref: 536.462463] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.024224] [Yaw: -0.060399] [Throttle:0.470870] [Flaps: 0.000000] [Data Ref: 534.902100] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.028969] [Yaw: -0.114377] [Throttle:0.476889] [Flaps: 0.000000] [Data Ref: 533.338013] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:0.522339] [Flaps: 0.000000] [Data Ref: 531.812744] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.028969] [Yaw: -0.028969] [Throttle:0.529895] [Flaps: 0.000000] [Data Ref: 530.339172] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.038928] [Yaw: 0.028969] [Throttle:0.556346] [Flaps: 0.000000] [Data Ref: 528.830750] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.209401] [Yaw: 0.007337] [Throttle:0.576278] [Flaps: 0.000000] [Data Ref: 527.406921] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.101813] [Yaw: 0.015298] [Throttle:0.576278] [Flaps: 0.000000] [Data Ref: 525.949036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:0.576278] [Flaps: 0.000000] [Data Ref: 524.529541] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.576278] [Flaps: 0.000000] [Data Ref: 523.190125] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.049429] [Throttle:0.570118] [Flaps: 0.000000] [Data Ref: 521.908875] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: 0.019659] [Throttle:0.525380] [Flaps: 0.000000] [Data Ref: 520.575439] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.060399] [Yaw: -0.000981] [Throttle:0.525380] [Flaps: 0.000000] [Data Ref: 519.226379] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.077619] [Yaw: 0.003875] [Throttle:0.519351] [Flaps: 0.000000] [Data Ref: 518.028320] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: -0.015298] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 516.836975] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.174181] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 515.645264] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 514.437561] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.033875] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 513.346008] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 512.203979] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 510.996643] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 509.827209] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 508.516479] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 507.244507] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.038928] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 505.917053] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.071784] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 504.725433] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.083543] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 503.411804] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.101813] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 501.866577] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.071784] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 500.472595] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 498.974396] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 497.531219] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 495.969208] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 494.422455] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 492.781647] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.260750] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 491.357849] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 489.684113] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 488.267365] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 486.699524] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 485.303375] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 483.972076] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.114377] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 482.408478] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 480.924957] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 479.458527] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.071784] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 477.964539] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 476.547363] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.095643] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 475.272003] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 473.843048] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.095643] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 472.460999] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 471.164581] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.140336] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 469.774139] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.223840] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 468.337158] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 466.877991] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 465.404877] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.133748] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 463.936188] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 462.346039] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.174181] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 460.890900] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.160469] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 459.363495] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 457.983734] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.024224] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 456.282928] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 454.490967] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.238468] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 452.627594] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.195158] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 450.833496] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.120767] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 448.919983] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.077619] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 446.935669] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.238469] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 444.834045] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.231131] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 442.802521] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.223840] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 440.773376] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.160469] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 438.752594] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.146987] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 436.976318] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.033876] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 435.182831] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 433.482788] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 431.979523] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.054859] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 430.381195] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.077619] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 428.886383] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.095643] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 427.314758] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.095643] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 425.713318] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.146987] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 424.300049] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.153698] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 422.770447] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.133748] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 421.231323] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 419.810913] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 418.408997] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 416.733185] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 415.278320] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 413.625702] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.083543] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 412.011627] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.071784] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 410.384827] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 408.689697] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 407.073212] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 405.449158] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 403.803711] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 402.124512] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.077619] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 400.360962] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.089552] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 398.794800] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.089552] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 397.213318] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 395.479553] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 393.860199] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 392.192505] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.033876] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 390.581421] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 388.844788] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 387.205048] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.101813] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 385.372864] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.089552] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 383.800049] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 382.154236] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 380.469055] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 378.596558] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 376.913483] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 375.014252] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 373.325500] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 371.624512] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 369.553253] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 367.696564] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 366.241913] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 364.847168] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 363.454834] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 362.074097] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: -0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 360.450500] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.044116] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 358.887787] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.049429] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 357.387848] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.033876] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 355.837402] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 354.361572] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.038928] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 352.983551] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.114377] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 351.570068] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.114377] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 350.206909] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.174181] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 348.838684] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.153698] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 347.473511] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.133748] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 346.202179] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.146987] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 344.918213] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.089552] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 343.719055] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.049429] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 342.497894] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 341.217468] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 340.071503] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 338.809601] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.140336] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 337.651093] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.146987] [Yaw: 0.000981] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 336.502472] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 335.399689] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.153698] [Yaw: 0.011174] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 334.308167] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.024224] [Yaw: 0.011174] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 333.237488] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 332.303131] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.024224] [Yaw: 0.011174] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 331.211823] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 330.355408] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.492788] [Flaps: 0.000000] [Data Ref: 329.458679] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.033875] [Yaw: 0.108059] [Throttle:0.532768] [Flaps: 0.000000] [Data Ref: 328.557129] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: 0.028969] [Throttle:0.563079] [Flaps: 0.000000] [Data Ref: 327.763245] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.563079] [Flaps: 0.000000] [Data Ref: 327.009308] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.049429] [Yaw: 0.153698] [Throttle:0.605098] [Flaps: 0.000000] [Data Ref: 326.276062] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: 0.083543] [Throttle:0.651891] [Flaps: 0.000000] [Data Ref: 325.613495] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.114377] [Yaw: 0.089552] [Throttle:0.702504] [Flaps: 0.000000] [Data Ref: 324.934418] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.054859] [Yaw: 0.054859] [Throttle:0.734407] [Flaps: 0.000000] [Data Ref: 324.280762] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.734407] [Flaps: 0.000000] [Data Ref: 323.686646] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.734407] [Flaps: 0.000000] [Data Ref: 323.094269] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.019659] [Yaw: 0.114377] [Throttle:0.749303] [Flaps: 0.000000] [Data Ref: 322.476105] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.019659] [Yaw: 0.024224] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 321.786377] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 321.141724] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 320.463562] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 319.691559] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 318.953430] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 318.197266] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 317.520416] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 316.807465] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 316.074005] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 315.379486] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 314.763763] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 314.115753] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 313.471222] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.054859] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 312.856628] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 312.302368] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 311.702148] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 311.205078] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 310.622894] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 310.144196] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 309.624268] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.767110] [Flaps: 0.000000] [Data Ref: 309.097687] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.000981] [Yaw: 0.095644] [Throttle:0.786279] [Flaps: 0.000000] [Data Ref: 308.596680] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 308.065216] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 307.493805] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 307.006561] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 306.459686] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.101813] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 305.907593] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 305.408478] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.019659] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 304.900635] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.028969] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 304.369995] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.028969] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 303.861786] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.028969] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 303.407013] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.028969] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 302.926575] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.024224] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 302.470245] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 302.029388] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 301.553345] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.071784] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 301.140167] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.066042] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 300.696259] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 300.255981] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.015298] [Yaw: -0.003875] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 299.759094] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.024224] [Yaw: -0.007337] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 299.257355] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 298.755463] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.799865] [Flaps: 0.000000] [Data Ref: 298.200836] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.077619] [Throttle:0.843145] [Flaps: 0.000000] [Data Ref: 297.664856] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.060399] [Throttle:0.886912] [Flaps: 0.000000] [Data Ref: 297.075104] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.174181] [Throttle:0.935843] [Flaps: 0.000000] [Data Ref: 296.513336] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.024224] [Yaw: 0.216596] [Throttle:0.980545] [Flaps: 0.000000] [Data Ref: 295.851318] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.019659] [Yaw: 0.195158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.232422] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.563690] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.880341] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.049429] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.163666] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.083543] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.373413] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.659760] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.949219] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.071784] [Yaw: -0.011174] [Throttle:0.953049] [Flaps: 0.000000] [Data Ref: 290.174103] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.054859] [Yaw: -0.007337] [Throttle:0.905668] [Flaps: 0.000000] [Data Ref: 289.471466] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.011174] [Yaw: -0.011174] [Throttle:0.856707] [Flaps: 0.000000] [Data Ref: 288.741241] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.809965] [Flaps: 0.000000] [Data Ref: 288.051056] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.024224] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 287.296509] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 286.627167] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 285.955444] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 285.240540] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 284.509613] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 283.800873] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 282.995117] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.054859] [Yaw: 0.015298] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 282.321075] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.049429] [Yaw: 0.015298] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 281.593689] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.108059] [Yaw: 0.015298] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 280.886261] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.095644] [Yaw: 0.015298] [Throttle:0.779836] [Flaps: 0.000000] [Data Ref: 280.256165] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.019659] [Yaw: 0.083543] [Throttle:0.808930] [Flaps: 0.000000] [Data Ref: 279.653351] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:0.853124] [Flaps: 0.000000] [Data Ref: 279.070740] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.024224] [Yaw: 0.066042] [Throttle:0.899791] [Flaps: 0.000000] [Data Ref: 278.618805] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.028969] [Yaw: 0.028969] [Throttle:0.905888] [Flaps: 0.000000] [Data Ref: 278.216339] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.146987] [Throttle:0.936707] [Flaps: 0.000000] [Data Ref: 277.895599] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.038928] [Yaw: 0.003875] [Throttle:0.950525] [Flaps: 0.000000] [Data Ref: 277.672852] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.950525] [Flaps: 0.000000] [Data Ref: 277.522308] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.049429] [Yaw: 0.033876] [Throttle:0.999576] [Flaps: 0.000000] [Data Ref: 277.478516] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: -0.007337] [Throttle:0.999576] [Flaps: 0.000000] [Data Ref: 277.521515] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:0.999576] [Flaps: 0.000000] [Data Ref: 277.652527] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.049429] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.832367] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.087830] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.396210] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.958607] [Flaps: 0.000000] [Data Ref: 278.721130] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.007337] [Yaw: 0.003875] [Throttle:0.958607] [Flaps: 0.000000] [Data Ref: 279.071289] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.958607] [Flaps: 0.000000] [Data Ref: 279.439575] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:0.933030] [Flaps: 0.000000] [Data Ref: 279.829620] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: 0.028969] [Throttle:0.890536] [Flaps: 0.000000] [Data Ref: 280.203461] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.890536] [Flaps: 0.000000] [Data Ref: 280.605621] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.890536] [Flaps: 0.000000] [Data Ref: 280.964661] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.049429] [Yaw: 0.044116] [Throttle:0.883492] [Flaps: 0.000000] [Data Ref: 281.360535] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: 0.066042] [Throttle:0.838790] [Flaps: 0.000000] [Data Ref: 281.771820] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.054859] [Yaw: 0.066042] [Throttle:0.790230] [Flaps: 0.000000] [Data Ref: 282.183075] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.060399] [Yaw: 0.003875] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 282.639648] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.054859] [Yaw: 0.003875] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 283.081879] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.024224] [Yaw: 0.003875] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 283.589508] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 284.079468] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 284.620270] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 285.168762] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 285.689087] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 286.262421] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 286.908386] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 287.444824] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 288.085175] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 288.662537] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 289.303345] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 289.934448] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 290.603668] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 291.255127] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 292.008545] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 292.711334] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 293.442780] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 294.209381] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 295.030670] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.015298] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 295.873322] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.038928] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 296.815582] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.054859] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 297.626007] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 298.590027] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 299.421539] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 300.424530] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 301.267120] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 302.138000] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 303.125824] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 303.968445] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 304.982605] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.095643] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 305.929291] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.083543] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 306.842743] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 307.789795] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 308.784241] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 309.683563] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 310.585266] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 311.434479] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 312.209045] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.777450] [Flaps: 0.000000] [Data Ref: 313.001251] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.033876] [Yaw: 0.019659] [Throttle:0.751674] [Flaps: 0.000000] [Data Ref: 313.652222] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.019659] [Yaw: 0.024224] [Throttle:0.720133] [Flaps: 0.000000] [Data Ref: 314.298828] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.019659] [Yaw: -0.033875] [Throttle:0.713526] [Flaps: 0.000000] [Data Ref: 314.887024] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 315.439850] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 316.000275] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 316.535156] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.003875] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 317.074860] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.011174] [Yaw: 0.011174] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 317.603027] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 318.160095] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 318.744354] [T/O: false ][Cruise: false ] +[Elevator: -0.095643] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 319.339935] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.038928] [Yaw: 0.003875] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 320.006012] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 320.712769] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 321.443024] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 322.211029] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 323.037689] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.670458] [Flaps: 0.000000] [Data Ref: 323.900360] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.636964] [Flaps: 0.000000] [Data Ref: 324.769714] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.607255] [Flaps: 0.000000] [Data Ref: 325.621887] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.019659] [Yaw: 0.011174] [Throttle:0.607255] [Flaps: 0.000000] [Data Ref: 326.357422] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.019659] [Yaw: 0.015298] [Throttle:0.569996] [Flaps: 0.000000] [Data Ref: 327.151703] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.083543] [Yaw: -0.011174] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 327.874084] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.140336] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 328.620453] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.153698] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 329.299683] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.089552] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 329.915588] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 330.545349] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.181120] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 331.115631] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.160469] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 331.664520] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.111877] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.547729] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.906067] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.054859] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.230469] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.060399] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.493225] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.714478] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.874542] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.987579] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.062561] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.003875] [Yaw: 0.054859] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.106049] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.054859] [Yaw: 0.003875] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.122803] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.089552] [Yaw: -0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.119873] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.094116] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 334.048035] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.028969] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.967529] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.095643] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.853821] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.095643] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.686737] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.095643] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.487274] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 333.216217] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.889557] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.140336] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.524994] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 332.097534] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 331.582123] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 331.030487] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 330.413483] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 329.763519] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 329.076477] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 328.393738] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 327.596954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 326.812958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 326.027405] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 325.069000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 324.127472] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 323.178528] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 322.046722] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 321.002869] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 319.827240] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 318.547150] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 317.244202] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.038928] [Yaw: 0.007337] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 315.890686] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.033876] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 314.409821] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 312.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 311.449890] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 309.924744] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 308.478607] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.019659] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 307.129456] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.028969] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 305.777191] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.024224] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 304.380829] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 303.183960] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 301.946838] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 300.757385] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.140336] [Yaw: 0.015298] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 299.724182] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.114377] [Yaw: 0.015298] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 298.632355] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.028969] [Yaw: 0.019659] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 297.654755] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:0.533236] [Flaps: 0.000000] [Data Ref: 296.759644] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:0.505742] [Flaps: 0.000000] [Data Ref: 295.742371] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.089552] [Throttle:0.459112] [Flaps: 0.000000] [Data Ref: 294.923279] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.024224] [Yaw: 0.089552] [Throttle:0.414173] [Flaps: 0.000000] [Data Ref: 294.089508] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.024224] [Yaw: 0.095644] [Throttle:0.370181] [Flaps: 0.000000] [Data Ref: 293.240997] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.015298] [Yaw: 0.089552] [Throttle:0.326576] [Flaps: 0.000000] [Data Ref: 292.421082] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.083543] [Throttle:0.279481] [Flaps: 0.000000] [Data Ref: 291.654938] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.000981] [Yaw: 0.083543] [Throttle:0.234771] [Flaps: 0.000000] [Data Ref: 290.774506] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.028969] [Yaw: 0.083543] [Throttle:0.186519] [Flaps: 0.000000] [Data Ref: 290.044983] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.089552] [Yaw: 0.071784] [Throttle:0.138705] [Flaps: 0.000000] [Data Ref: 289.211395] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: 0.071784] [Throttle:0.094586] [Flaps: 0.000000] [Data Ref: 288.399902] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.060399] [Yaw: 0.071784] [Throttle:0.045991] [Flaps: 0.000000] [Data Ref: 287.599945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.044116] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 286.730957] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.007337] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 285.957275] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.044116] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 285.056000] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.146987] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 284.233612] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.114377] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 283.428741] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.114377] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 282.529541] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.083543] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 281.715851] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.019659] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 280.831482] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.054859] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 279.949188] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.033875] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 279.015533] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.071784] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 278.179230] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.089552] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 277.312134] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.202254] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 276.451874] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.089552] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 275.678833] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.337718] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 274.930664] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.114377] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 274.154205] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.028969] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.489532] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 272.774841] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.181120] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 272.083069] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.195158] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 271.367188] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.083543] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.632599] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 269.798065] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.174181] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 268.984528] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.127224] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 268.130524] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.153698] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 267.261383] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.060399] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.438690] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.024224] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 265.548370] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: -0.146987] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 264.674255] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.071784] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 263.848450] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.083543] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 262.968292] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.077619] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 262.078888] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.024224] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 261.176025] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.174181] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 260.096741] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.160469] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 259.090912] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 258.050842] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.133748] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 256.970245] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.127224] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.910980] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 254.653625] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: -0.015298] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 253.464386] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.089552] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 252.229095] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.071784] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 251.056335] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.033876] [Yaw: 0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 249.889709] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: 0.015298] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 248.711914] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 247.478424] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 246.209915] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.044116] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 244.924774] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.083543] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 243.508179] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.028969] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 241.943893] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.011174] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 240.441422] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 238.777161] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 237.009384] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 235.260956] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 233.439621] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.038928] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 231.677200] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 0.127224] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 229.830444] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.083543] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 228.032242] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.089552] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 226.274048] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.071784] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 224.563995] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.054859] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 222.852005] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.054859] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 221.122269] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 219.390076] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.024224] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 217.720108] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.028969] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 216.130249] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.033875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 214.482635] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 212.906372] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 211.264633] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.077619] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 209.631500] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.054859] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 208.059082] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 206.592133] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.146987] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 205.107346] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.167297] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 203.576553] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 202.001343] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 200.398117] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.071784] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 198.918045] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.095643] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 197.348999] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.089552] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 195.755600] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.077619] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 194.194550] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 192.617798] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 191.037766] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.000981] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.458786] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.834473] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 186.170105] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.402817] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: 0.195158] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 182.637238] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 180.876968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.086288] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.425247] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.682358] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.797028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 172.025085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 170.271194] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.450928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.828491] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 165.074829] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.521027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.122635] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.723282] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.333008] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.298737] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.086838] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.847855] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.140336] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.691467] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.507614] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.402435] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.071784] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 152.224686] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.964935] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.675186] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.024224] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 148.418961] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.099976] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.670319] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 144.251648] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 142.725464] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.101813] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.332413] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.049429] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.953430] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.531326] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.033876] [Yaw: 0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 137.011673] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.054859] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.559296] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.101813] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.240082] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.015298] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.913635] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.028969] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.464630] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.024224] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.173737] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.174181] [Yaw: 0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.877151] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.613617] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.249054] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.019659] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 125.026466] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.015298] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.705032] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.044116] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.327309] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.083543] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.113358] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.120767] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.875465] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.133748] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.593750] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.127224] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.357353] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.089552] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.143677] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.066042] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 114.734108] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 113.518539] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 112.190491] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 110.779411] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.033876] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 109.449127] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.033876] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.993660] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.028969] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 106.511917] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.066042] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 104.992622] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.167297] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 103.509346] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.160469] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 101.848892] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.160469] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 100.460098] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.160469] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 99.051308] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 97.526001] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 95.993622] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 94.578896] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.038928] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 93.119705] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.089552] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.671547] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.181120] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 90.349617] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.231131] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 89.023735] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.202254] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 87.648918] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.089552] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 86.465813] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.044116] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 85.129929] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.054859] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 83.848038] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.060399] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 82.575264] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.146987] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 81.356232] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 0.167297] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 80.099113] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.223840] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 78.793968] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 77.429581] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.120767] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 76.048904] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 74.698677] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 73.328522] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 71.910294] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.467186] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.024224] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 69.082581] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.066042] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.686127] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.095643] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.261253] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.140336] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.705544] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: -0.167297] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.326015] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.160468] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.721191] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.133748] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 60.248928] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.071784] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.804676] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.044116] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.381435] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.942867] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.497463] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.060399] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.973572] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.181120] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 51.507423] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.127224] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.081936] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.015298] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.464062] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.216596] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.989452] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.381672] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.024224] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.022751] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.617165] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.038928] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.337570] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.139389] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.038928] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.016464] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.060399] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.000881] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.137943] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.334984] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.596577] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.942146] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.404881] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.015298] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.928062] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.049429] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.499252] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.049429] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.158806] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.083543] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.889050] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.066042] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.665630] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.033875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.488667] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.368641] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.288506] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.239906] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.216606] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.209526] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.028969] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.211674] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.038928] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.212856] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.203857] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.178780] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.133522] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.069546] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.991127] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.019659] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.893412] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: 0.019659] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.787769] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.659618] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.015298] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.505363] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.359207] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.199785] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.011944] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.817862] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.011174] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.619091] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.419767] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.205189] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.982376] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.768301] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.537334] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.015298] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.288113] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.015298] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.034451] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.089552] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.779221] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.089552] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.441475] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.136858] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.060399] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.786995] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.019659] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.393801] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.077619] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.977072] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.044116] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.541260] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.038928] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.078829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.603319] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.118778] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.635324] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.123375] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.140336] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.615431] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.188113] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.122019] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.049429] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.681622] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: -0.298737] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.271961] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: -0.337718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.898439] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.019659] [Yaw: -0.510867] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.554667] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.038928] [Yaw: -0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.267996] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: -0.153698] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.985329] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.033875] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.732302] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: -0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.510040] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.146987] [Yaw: -0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.316145] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.146987] [Yaw: -0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.150290] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.011837] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.015298] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.906254] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.060399] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.809643] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.015298] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.726212] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.000981] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.655331] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.596439] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.545563] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.504499] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.475615] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.083543] [Yaw: -0.066042] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.453682] [T/O: false ][Cruise: false ] +[Elevator: 0.779844] [Roll: -0.410168] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.433382] [T/O: false ][Cruise: false ] +[Elevator: 0.401982] [Roll: -0.434924] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.411236] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.390663] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.376287] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.216596] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.372126] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.381399] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.403046] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.049429] [Yaw: -0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.433365] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: 0.353573] [Yaw: -0.083543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.465137] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.268264] [Yaw: -0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.493456] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.133748] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.505154] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.499996] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.485376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.471832] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.464937] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.095643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.465244] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.470549] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.089552] [Yaw: -0.120767] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476501] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.089552] [Yaw: -0.127224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.477474] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.049429] [Yaw: -0.127224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.468975] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.060399] [Yaw: -0.127224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.447498] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.146987] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.410259] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.209401] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.363413] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.318251] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.280409] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.181120] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.248936] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.214500] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.180828] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.147657] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.119318] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.090645] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.044116] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.064672] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.202254] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.040953] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.298737] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.018490] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.001987] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.985752] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.969965] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.956861] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.003875] [Yaw: 0.401982] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.947269] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.940374] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.935080] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.931458] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.385708] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928205] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.924398] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920490] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917356] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914648] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912310] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910736] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910099] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.909969] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.909536] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.033876] [Yaw: 0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908745] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.038928] [Yaw: 0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908197] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.028969] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908041] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.907990] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: 0.393828] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908215] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908659] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908802] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908302] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.907391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906443] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: -0.902941] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905575] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905039] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905567] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.015298] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.907604] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910633] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912842] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913208] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912249] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.911261] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: -0.606834] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.911129] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: -0.960939] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912518] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915113] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917889] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919966] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921175] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.733485] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922659] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.924200] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925421] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.019659] [Yaw: -0.510867] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925686] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.924683] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922407] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.426640] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919212] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916220] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.443241] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913986] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913015] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913651] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915304] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917053] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917967] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918285] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918674] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919481] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920118] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919832] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919130] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918873] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919306] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.606834] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920101] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920544] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920551] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920574] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921099] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.049429] [Yaw: -0.054859] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922241] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.044116] [Yaw: -0.322011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923643] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925131] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.033876] [Yaw: -0.817334] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.926348] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927158] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927753] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.033876] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928255] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928278] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927143] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.015298] [Yaw: -0.114377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925165] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.028969] [Yaw: -0.922194] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922897] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921213] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.019659] [Yaw: -0.554078] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920284] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.049429] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919899] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919464] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918648] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: -0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917578] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.049429] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916553] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915634] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.028969] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916153] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920113] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.369570] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923641] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.826761] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.926851] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929058] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929718] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929140] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928089] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927376] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927181] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.095644] [Yaw: 0.077619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927311] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.153698] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927494] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927763] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.033876] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928360] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.019659] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929310] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930197] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930540] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.011174] [Yaw: 0.742711] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930302] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.902942] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929979] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930084] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930889] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.932487] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.033876] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.934134] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: 0.181120] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.935493] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 0.174181] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.936123] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.935812] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.167297] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.934811] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.160469] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.933632] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.932497] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.931421] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930557] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929867] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.929289] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928909] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928570] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.127224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928064] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: -0.033875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927259] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: -0.434924] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.926277] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.011174] [Yaw: -0.554078] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925333] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.083543] [Yaw: -0.545380] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.924402] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.476814] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923563] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.554078] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922663] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921572] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920160] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918522] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916616] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914476] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912548] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910566] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908844] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.907389] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906359] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905769] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905684] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906843] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908058] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.909410] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910833] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912331] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913834] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915117] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916426] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917589] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918453] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918987] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919092] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918795] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918184] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917351] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916525] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915768] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915171] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914713] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914364] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914162] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914040] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914007] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914022] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914045] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914066] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914047] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913992] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913904] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913784] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913673] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913557] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913458] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913370] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913311] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913277] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913254] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913246] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913246] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913242] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913235] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913219] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913200] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913193] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913181] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913170] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913164] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913153] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913153] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913143] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913132] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913132] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913137] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913137] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913145] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913174] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913233] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.006931] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913307] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913780] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914019] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.009628] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915686] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918549] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.911194] [T/O: false ][Cruise: false ] +[Elevator: 0.010621] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906796] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918009] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925919] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.008267] [Yaw: -0.043670] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930286] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.011765] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.935720] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.006026] [Yaw: 0.125977] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930199] [T/O: false ][Cruise: false ] +[Elevator: 0.003673] [Roll: 0.011765] [Yaw: 0.011637] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927290] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.926785] [T/O: false ][Cruise: false ] +[Elevator: 0.006208] [Roll: 0.011765] [Yaw: 0.589622] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916683] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.038924] [Yaw: -0.865182] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921579] [T/O: false ][Cruise: false ] +[Elevator: 0.006657] [Roll: 0.022344] [Yaw: -0.673131] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927174] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.032168] [Yaw: -0.003810] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920856] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: 0.071531] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919422] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: 0.646428] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915825] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: 0.528759] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922180] [T/O: false ][Cruise: false ] +[Elevator: 0.020061] [Roll: 0.001621] [Yaw: -0.118016] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920780] [T/O: false ][Cruise: false ] +[Elevator: 0.018773] [Roll: 0.003087] [Yaw: 0.010930] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.912329] [T/O: false ][Cruise: false ] +[Elevator: 0.022406] [Roll: 0.003922] [Yaw: -0.496202] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905655] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.011765] [Yaw: -0.164438] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908247] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.027451] [Yaw: 0.183555] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910036] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: 0.003922] [Yaw: 0.003192] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.922571] [T/O: false ][Cruise: false ] +[Elevator: 0.036627] [Roll: 0.003922] [Yaw: 0.388003] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.948265] [T/O: false ][Cruise: false ] +[Elevator: 0.038500] [Roll: 0.000716] [Yaw: 0.013197] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.032600] [T/O: false ][Cruise: false ] +[Elevator: 0.072147] [Roll: -0.086652] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.200689] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: -0.054401] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.401789] [T/O: false ][Cruise: false ] +[Elevator: 0.067720] [Roll: -0.069417] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467787] [T/O: false ][Cruise: false ] +[Elevator: 0.013207] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.494469] [T/O: false ][Cruise: false ] +[Elevator: 0.159250] [Roll: 0.272226] [Yaw: -0.107447] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.378374] [T/O: false ][Cruise: false ] +[Elevator: 0.043179] [Roll: -0.116661] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.454866] [T/O: false ][Cruise: false ] +[Elevator: 0.033027] [Roll: 0.001238] [Yaw: -0.043346] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.668425] [T/O: false ][Cruise: false ] +[Elevator: 0.063642] [Roll: -0.020786] [Yaw: -0.087787] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.233871] [T/O: false ][Cruise: false ] +[Elevator: 0.063215] [Roll: -0.084049] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.523354] [T/O: false ][Cruise: false ] +[Elevator: 0.060117] [Roll: -0.019608] [Yaw: -0.412290] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.005758] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.001704] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.661268] [T/O: false ][Cruise: false ] +[Elevator: 0.014431] [Roll: -0.069177] [Yaw: 0.081020] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.760410] [T/O: false ][Cruise: false ] +[Elevator: 0.146741] [Roll: -0.042491] [Yaw: 0.135945] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.022051] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.010233] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.092598] [T/O: false ][Cruise: false ] +[Elevator: 0.049263] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.908360] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.012994] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.198364] [T/O: false ][Cruise: false ] +[Elevator: 0.252904] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.276150] [T/O: false ][Cruise: false ] +[Elevator: 0.055217] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.086040] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.633747] [T/O: false ][Cruise: false ] +[Elevator: 0.060880] [Roll: -0.011079] [Yaw: 0.018922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.441296] [T/O: false ][Cruise: false ] +[Elevator: 0.067679] [Roll: 0.029728] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.479740] [T/O: false ][Cruise: false ] +[Elevator: 0.030182] [Roll: 0.024737] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.105007] [T/O: false ][Cruise: false ] +[Elevator: 0.298127] [Roll: -0.019063] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.633659] [T/O: false ][Cruise: false ] +[Elevator: 0.117942] [Roll: -0.157157] [Yaw: 0.022475] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.191628] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 77.764740] [T/O: false ][Cruise: false ] +[Elevator: 0.170082] [Roll: 0.197976] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.690903] [T/O: false ][Cruise: false ] +[Elevator: 0.099464] [Roll: -0.068810] [Yaw: 0.004397] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.366768] [T/O: false ][Cruise: false ] +[Elevator: 0.022538] [Roll: -0.055803] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 99.078133] [T/O: false ][Cruise: false ] +[Elevator: 0.105041] [Roll: 0.159102] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.005112] [T/O: false ][Cruise: false ] +[Elevator: 0.114859] [Roll: 0.040869] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 113.833549] [T/O: false ][Cruise: false ] +[Elevator: 0.116268] [Roll: -0.061934] [Yaw: 0.013604] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.548233] [T/O: false ][Cruise: false ] +[Elevator: 0.076157] [Roll: -0.059242] [Yaw: 0.056758] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.819649] [T/O: false ][Cruise: false ] +[Elevator: 0.070645] [Roll: 0.178572] [Yaw: 0.081182] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.943573] [T/O: false ][Cruise: false ] +[Elevator: 0.126884] [Roll: 0.040846] [Yaw: 0.117104] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.936691] [T/O: false ][Cruise: false ] +[Elevator: 0.080458] [Roll: 0.106410] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.405777] [T/O: false ][Cruise: false ] +[Elevator: 0.070148] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.724442] [T/O: false ][Cruise: false ] +[Elevator: 0.029563] [Roll: -0.156576] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.071243] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.007735] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 170.671539] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.027419] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.503647] [T/O: false ][Cruise: false ] +[Elevator: 0.268396] [Roll: 0.056136] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.579697] [T/O: false ][Cruise: false ] +[Elevator: 0.067609] [Roll: -0.003922] [Yaw: -0.022850] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 195.208252] [T/O: false ][Cruise: false ] +[Elevator: 0.063686] [Roll: -0.094431] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 202.852753] [T/O: false ][Cruise: false ] +[Elevator: 0.083127] [Roll: 0.165532] [Yaw: 0.010991] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 211.226166] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.067130] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 219.360504] [T/O: false ][Cruise: false ] +[Elevator: 0.077601] [Roll: 0.037072] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 227.953995] [T/O: false ][Cruise: false ] +[Elevator: 0.096008] [Roll: 0.097362] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 236.733521] [T/O: false ][Cruise: false ] +[Elevator: 0.066788] [Roll: 0.003922] [Yaw: 0.015747] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 244.703354] [T/O: false ][Cruise: false ] +[Elevator: 0.227705] [Roll: -0.011188] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 250.987457] [T/O: false ][Cruise: false ] +[Elevator: -0.309171] [Roll: -0.079152] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 257.313904] [T/O: false ][Cruise: false ] +[Elevator: 0.016699] [Roll: 0.025891] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 262.463196] [T/O: false ][Cruise: false ] +[Elevator: 0.206704] [Roll: -0.084159] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.643188] [T/O: false ][Cruise: false ] +[Elevator: -0.181024] [Roll: 0.143833] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.906555] [T/O: false ][Cruise: false ] +[Elevator: 0.132846] [Roll: 0.191667] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 274.777893] [T/O: false ][Cruise: false ] +[Elevator: 0.037617] [Roll: -0.145478] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 278.837158] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.038756] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 283.445923] [T/O: false ][Cruise: false ] +[Elevator: 0.131899] [Roll: 0.136834] [Yaw: 0.064601] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 287.605896] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.055517] [Yaw: 0.074510] [Throttle:0.082826] [Flaps: 0.000000] [Data Ref: 291.752502] [T/O: false ][Cruise: false ] +[Elevator: 0.048696] [Roll: 0.014049] [Yaw: 0.091338] [Throttle:0.339615] [Flaps: 0.000000] [Data Ref: 296.713989] [T/O: false ][Cruise: false ] +[Elevator: 0.067207] [Roll: 0.019091] [Yaw: 0.021698] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 302.003326] [T/O: false ][Cruise: false ] +[Elevator: 0.082159] [Roll: -0.003922] [Yaw: 0.019414] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 308.183594] [T/O: false ][Cruise: false ] +[Elevator: -0.001966] [Roll: 0.009809] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 315.500000] [T/O: false ][Cruise: false ] +[Elevator: 0.092675] [Roll: 0.022494] [Yaw: 0.001443] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 322.035614] [T/O: false ][Cruise: false ] +[Elevator: 0.119514] [Roll: 0.003922] [Yaw: -0.004581] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 326.865173] [T/O: false ][Cruise: false ] +[Elevator: 0.016216] [Roll: 0.003922] [Yaw: -0.008373] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 330.323853] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.025443] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.876740] [T/O: false ][Cruise: false ] +[Elevator: 0.034185] [Roll: 0.024678] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.967804] [T/O: false ][Cruise: false ] +[Elevator: 0.068997] [Roll: 0.032604] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.092010] [T/O: false ][Cruise: false ] +[Elevator: -0.028298] [Roll: -0.003922] [Yaw: 0.038904] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.490875] [T/O: false ][Cruise: false ] +[Elevator: 0.067006] [Roll: 0.063462] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 331.652802] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.180595] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 328.496643] [T/O: false ][Cruise: false ] +[Elevator: 0.065641] [Roll: -0.095988] [Yaw: 0.003922] [Throttle:0.534154] [Flaps: 0.000000] [Data Ref: 324.248016] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.668775] [Flaps: 0.000000] [Data Ref: 320.310822] [T/O: false ][Cruise: false ] +[Elevator: 0.002451] [Roll: 0.030497] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 316.916046] [T/O: false ][Cruise: false ] +[Elevator: 0.077335] [Roll: -0.037487] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 313.825653] [T/O: false ][Cruise: false ] +[Elevator: 0.094736] [Roll: 0.047677] [Yaw: 0.010529] [Throttle:0.771515] [Flaps: 0.000000] [Data Ref: 309.674103] [T/O: false ][Cruise: false ] +[Elevator: 0.128896] [Roll: 0.003664] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 304.765411] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.098039] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 300.099792] [T/O: false ][Cruise: false ] +[Elevator: 0.044950] [Roll: -0.095727] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 295.568756] [T/O: false ][Cruise: false ] +[Elevator: 0.067133] [Roll: -0.002523] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 292.068604] [T/O: false ][Cruise: false ] +[Elevator: 0.074482] [Roll: 0.027340] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 288.481293] [T/O: false ][Cruise: false ] +[Elevator: 0.076277] [Roll: 0.044904] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 285.509796] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 282.626709] [T/O: false ][Cruise: false ] +[Elevator: 0.042254] [Roll: 0.051863] [Yaw: 0.059603] [Throttle:0.800831] [Flaps: 0.000000] [Data Ref: 280.537598] [T/O: false ][Cruise: false ] +[Elevator: 0.045383] [Roll: 0.003922] [Yaw: 0.010657] [Throttle:0.898055] [Flaps: 0.000000] [Data Ref: 278.496796] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.007599] [Yaw: 0.008087] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.524841] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.048023] [Yaw: 0.036195] [Throttle:0.973450] [Flaps: 0.000000] [Data Ref: 278.747681] [T/O: false ][Cruise: false ] +[Elevator: 0.070220] [Roll: 0.003186] [Yaw: 0.085907] [Throttle:0.841423] [Flaps: 0.000000] [Data Ref: 281.807465] [T/O: false ][Cruise: false ] +[Elevator: 0.120726] [Roll: 0.050980] [Yaw: 0.012607] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 285.305878] [T/O: false ][Cruise: false ] +[Elevator: 0.183912] [Roll: -0.011363] [Yaw: 0.003922] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 288.852753] [T/O: false ][Cruise: false ] +[Elevator: 0.038863] [Roll: -0.036746] [Yaw: -0.008196] [Throttle:0.899844] [Flaps: 0.000000] [Data Ref: 292.408508] [T/O: false ][Cruise: false ] +[Elevator: 0.081370] [Roll: -0.061773] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.775848] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.014338] [Yaw: 0.207843] [Throttle:0.948895] [Flaps: 0.000000] [Data Ref: 298.696655] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.020581] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 300.989075] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.074510] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 303.266815] [T/O: false ][Cruise: false ] +[Elevator: 0.037081] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 305.712189] [T/O: false ][Cruise: false ] +[Elevator: 0.076984] [Roll: 0.120328] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 308.410797] [T/O: false ][Cruise: false ] +[Elevator: 0.113814] [Roll: -0.003922] [Yaw: 0.064199] [Throttle:0.779203] [Flaps: 0.000000] [Data Ref: 310.840057] [T/O: false ][Cruise: false ] +[Elevator: 0.073875] [Roll: 0.036564] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 313.418365] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.080437] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 316.646942] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.015554] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 320.175110] [T/O: false ][Cruise: false ] +[Elevator: 0.052958] [Roll: 0.000648] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 323.237854] [T/O: false ][Cruise: false ] +[Elevator: 0.144922] [Roll: 0.019961] [Yaw: 0.011941] [Throttle:0.733333] [Flaps: 0.000000] [Data Ref: 326.347992] [T/O: false ][Cruise: false ] +[Elevator: 0.043554] [Roll: 0.028700] [Yaw: 0.078674] [Throttle:0.566788] [Flaps: 0.000000] [Data Ref: 330.034485] [T/O: false ][Cruise: false ] +[Elevator: 0.037095] [Roll: -0.039280] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 334.910126] [T/O: false ][Cruise: false ] +[Elevator: 0.124114] [Roll: 0.141635] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 340.574646] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.003003] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 346.821960] [T/O: false ][Cruise: false ] +[Elevator: 0.093579] [Roll: -0.157401] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 353.692993] [T/O: false ][Cruise: false ] +[Elevator: 0.060116] [Roll: 0.030192] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 361.722168] [T/O: false ][Cruise: false ] +[Elevator: 0.120118] [Roll: 0.014666] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 373.001343] [T/O: false ][Cruise: false ] +[Elevator: 0.080773] [Roll: -0.021301] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 383.087219] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.091797] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 391.334564] [T/O: false ][Cruise: false ] +[Elevator: 0.072921] [Roll: 0.008687] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 399.198822] [T/O: false ][Cruise: false ] +[Elevator: 0.063500] [Roll: -0.079186] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 406.512665] [T/O: false ][Cruise: false ] +[Elevator: 0.015569] [Roll: 0.043137] [Yaw: 0.000117] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 413.963959] [T/O: false ][Cruise: false ] +[Elevator: 0.116594] [Roll: 0.032425] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 422.603027] [T/O: false ][Cruise: false ] +[Elevator: 0.056522] [Roll: -0.148444] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 423.553375] [T/O: false ][Cruise: false ] +[Elevator: 0.077952] [Roll: -0.146056] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 422.061279] [T/O: false ][Cruise: false ] +[Elevator: 0.111687] [Roll: -0.082777] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 420.659241] [T/O: false ][Cruise: false ] +[Elevator: 0.128313] [Roll: -0.012939] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 419.006226] [T/O: false ][Cruise: false ] +[Elevator: 0.103743] [Roll: 0.015806] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 417.410034] [T/O: false ][Cruise: false ] +[Elevator: 0.117308] [Roll: 0.026031] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 415.898651] [T/O: false ][Cruise: false ] +[Elevator: 0.101514] [Roll: 0.047506] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 414.291595] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.074510] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 412.733521] [T/O: false ][Cruise: false ] +[Elevator: 0.064523] [Roll: 0.071294] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 411.090973] [T/O: false ][Cruise: false ] +[Elevator: 0.043710] [Roll: 0.049526] [Yaw: -0.002467] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 409.564575] [T/O: false ][Cruise: false ] +[Elevator: 0.013203] [Roll: 0.043137] [Yaw: 0.002483] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 407.805450] [T/O: false ][Cruise: false ] +[Elevator: 0.034881] [Roll: 0.032228] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 406.254059] [T/O: false ][Cruise: false ] +[Elevator: 0.068297] [Roll: 0.001851] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 404.633759] [T/O: false ][Cruise: false ] +[Elevator: 0.053347] [Roll: -0.018119] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 402.900452] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.062963] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 401.082153] [T/O: false ][Cruise: false ] +[Elevator: 0.069502] [Roll: -0.085188] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 399.550812] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.090196] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 398.021332] [T/O: false ][Cruise: false ] +[Elevator: 0.060968] [Roll: -0.049571] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 396.481659] [T/O: false ][Cruise: false ] +[Elevator: 0.060947] [Roll: -0.009641] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 394.819794] [T/O: false ][Cruise: false ] +[Elevator: 0.071773] [Roll: 0.001185] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 393.327789] [T/O: false ][Cruise: false ] +[Elevator: 0.069859] [Roll: 0.017874] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 391.726227] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.031995] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 390.202576] [T/O: false ][Cruise: false ] +[Elevator: 0.074302] [Roll: 0.042930] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 388.549805] [T/O: false ][Cruise: false ] +[Elevator: 0.105924] [Roll: 0.071184] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 387.038818] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.094686] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 385.347473] [T/O: false ][Cruise: false ] +[Elevator: 0.148186] [Roll: 0.090196] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 383.739227] [T/O: false ][Cruise: false ] +[Elevator: 0.149851] [Roll: 0.053750] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 382.088287] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.011765] [Yaw: -0.000298] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 380.327118] [T/O: false ][Cruise: false ] +[Elevator: 0.125092] [Roll: -0.036888] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 378.638306] [T/O: false ][Cruise: false ] +[Elevator: 0.096776] [Roll: -0.085743] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 376.916107] [T/O: false ][Cruise: false ] +[Elevator: 0.077968] [Roll: -0.052156] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 375.285217] [T/O: false ][Cruise: false ] +[Elevator: 0.085663] [Roll: -0.000612] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 373.582855] [T/O: false ][Cruise: false ] +[Elevator: 0.074725] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 372.016357] [T/O: false ][Cruise: false ] +[Elevator: 0.053521] [Roll: 0.006463] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 370.338104] [T/O: false ][Cruise: false ] +[Elevator: 0.065578] [Roll: 0.009513] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 368.677612] [T/O: false ][Cruise: false ] +[Elevator: 0.095416] [Roll: 0.009147] [Yaw: 0.001309] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 367.078979] [T/O: false ][Cruise: false ] +[Elevator: 0.119298] [Roll: 0.021879] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 365.460358] [T/O: false ][Cruise: false ] +[Elevator: 0.116028] [Roll: 0.022847] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 363.923798] [T/O: false ][Cruise: false ] +[Elevator: 0.114454] [Roll: 0.011765] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 362.340485] [T/O: false ][Cruise: false ] +[Elevator: 0.084969] [Roll: 0.015249] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 360.788239] [T/O: false ][Cruise: false ] +[Elevator: 0.068125] [Roll: 0.031826] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 359.271759] [T/O: false ][Cruise: false ] +[Elevator: 0.085589] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 357.754059] [T/O: false ][Cruise: false ] +[Elevator: 0.111424] [Roll: 0.045584] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 356.314270] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.022443] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 354.890930] [T/O: false ][Cruise: false ] +[Elevator: 0.056753] [Roll: -0.021093] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 353.463715] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.102726] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 352.055573] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.116734] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 350.736420] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.143230] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 349.490845] [T/O: false ][Cruise: false ] +[Elevator: 0.083941] [Roll: -0.167039] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 348.124817] [T/O: false ][Cruise: false ] +[Elevator: 0.125220] [Roll: -0.146146] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 346.840759] [T/O: false ][Cruise: false ] +[Elevator: 0.138140] [Roll: -0.141029] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 345.629486] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.117831] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 344.421082] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.076536] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 343.261993] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: -0.031665] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 342.146942] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.006330] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 341.043579] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.016206] [Yaw: -0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 339.936035] [T/O: false ][Cruise: false ] +[Elevator: 0.116859] [Roll: 0.027434] [Yaw: -0.000788] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 338.892700] [T/O: false ][Cruise: false ] +[Elevator: 0.118647] [Roll: 0.083122] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 337.792938] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.140952] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 336.654297] [T/O: false ][Cruise: false ] +[Elevator: 0.127914] [Roll: 0.140369] [Yaw: 0.003922] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 335.599548] [T/O: false ][Cruise: false ] +[Elevator: 0.083228] [Roll: 0.147078] [Yaw: 0.008833] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 334.541748] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.062404] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 333.507904] [T/O: false ][Cruise: false ] +[Elevator: 0.063306] [Roll: -0.006723] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 332.499512] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.024016] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 331.557495] [T/O: false ][Cruise: false ] +[Elevator: 0.035805] [Roll: -0.039796] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 330.726166] [T/O: false ][Cruise: false ] +[Elevator: 0.050272] [Roll: -0.037432] [Yaw: 0.011765] [Throttle:0.494118] [Flaps: 0.000000] [Data Ref: 329.875610] [T/O: false ][Cruise: false ] +[Elevator: 0.052535] [Roll: -0.035294] [Yaw: 0.087225] [Throttle:0.506694] [Flaps: 0.000000] [Data Ref: 329.020508] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.028156] [Yaw: 0.070194] [Throttle:0.552631] [Flaps: 0.000000] [Data Ref: 328.243256] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.012020] [Yaw: 0.020375] [Throttle:0.564578] [Flaps: 0.000000] [Data Ref: 327.522034] [T/O: false ][Cruise: false ] +[Elevator: 0.043322] [Roll: 0.028004] [Yaw: 0.076353] [Throttle:0.565627] [Flaps: 0.000000] [Data Ref: 326.822571] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.050980] [Yaw: 0.147009] [Throttle:0.607547] [Flaps: 0.000000] [Data Ref: 326.159271] [T/O: false ][Cruise: false ] +[Elevator: 0.052776] [Roll: 0.061756] [Yaw: 0.082353] [Throttle:0.656038] [Flaps: 0.000000] [Data Ref: 325.490906] [T/O: false ][Cruise: false ] +[Elevator: 0.064536] [Roll: 0.092326] [Yaw: 0.085209] [Throttle:0.701985] [Flaps: 0.000000] [Data Ref: 324.864716] [T/O: false ][Cruise: false ] +[Elevator: 0.100838] [Roll: 0.062607] [Yaw: 0.060577] [Throttle:0.731057] [Flaps: 0.000000] [Data Ref: 324.245331] [T/O: false ][Cruise: false ] +[Elevator: 0.145195] [Roll: 0.019414] [Yaw: 0.011668] [Throttle:0.733333] [Flaps: 0.000000] [Data Ref: 323.622742] [T/O: false ][Cruise: false ] +[Elevator: 0.169723] [Roll: -0.004470] [Yaw: 0.020704] [Throttle:0.733333] [Flaps: 0.000000] [Data Ref: 323.035919] [T/O: false ][Cruise: false ] +[Elevator: 0.140546] [Roll: -0.016142] [Yaw: 0.065932] [Throttle:0.748652] [Flaps: 0.000000] [Data Ref: 322.428192] [T/O: false ][Cruise: false ] +[Elevator: 0.101111] [Roll: -0.014836] [Yaw: 0.037707] [Throttle:0.765556] [Flaps: 0.000000] [Data Ref: 321.759949] [T/O: false ][Cruise: false ] +[Elevator: 0.073907] [Roll: -0.005732] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 321.097931] [T/O: false ][Cruise: false ] +[Elevator: 0.046443] [Roll: 0.002820] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 320.420044] [T/O: false ][Cruise: false ] +[Elevator: 0.076071] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 319.753235] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.010792] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 319.041779] [T/O: false ][Cruise: false ] +[Elevator: 0.075398] [Roll: 0.032631] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 318.331329] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.020233] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 317.595337] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011772] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 316.891449] [T/O: false ][Cruise: false ] +[Elevator: 0.050820] [Roll: -0.011765] [Yaw: 0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 316.189270] [T/O: false ][Cruise: false ] +[Elevator: 0.048793] [Roll: -0.014027] [Yaw: 0.002791] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 315.523346] [T/O: false ][Cruise: false ] +[Elevator: 0.078498] [Roll: -0.033233] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 314.847900] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.076008] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 314.202209] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.082353] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 313.520630] [T/O: false ][Cruise: false ] +[Elevator: 0.062928] [Roll: -0.038545] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 312.943451] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 312.339417] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.020425] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 311.827271] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.033613] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 311.312286] [T/O: false ][Cruise: false ] +[Elevator: 0.068481] [Roll: 0.047351] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 310.802582] [T/O: false ][Cruise: false ] +[Elevator: 0.084478] [Roll: 0.033169] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 310.321350] [T/O: false ][Cruise: false ] +[Elevator: 0.107916] [Roll: 0.021544] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 309.867218] [T/O: false ][Cruise: false ] +[Elevator: 0.113726] [Roll: 0.008026] [Yaw: -0.003922] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 309.379700] [T/O: false ][Cruise: false ] +[Elevator: 0.107148] [Roll: -0.002656] [Yaw: 0.042121] [Throttle:0.768627] [Flaps: 0.000000] [Data Ref: 308.915375] [T/O: false ][Cruise: false ] +[Elevator: 0.128903] [Roll: -0.003922] [Yaw: 0.089348] [Throttle:0.799321] [Flaps: 0.000000] [Data Ref: 308.391663] [T/O: false ][Cruise: false ] +[Elevator: 0.051369] [Roll: 0.056414] [Yaw: 0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 307.864960] [T/O: false ][Cruise: false ] +[Elevator: 0.061188] [Roll: 0.160311] [Yaw: 0.003449] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 307.386810] [T/O: false ][Cruise: false ] +[Elevator: 0.098876] [Roll: 0.152104] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 306.879974] [T/O: false ][Cruise: false ] +[Elevator: 0.104910] [Roll: 0.144265] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 306.389038] [T/O: false ][Cruise: false ] +[Elevator: 0.051720] [Roll: 0.098673] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 305.895996] [T/O: false ][Cruise: false ] +[Elevator: 0.050952] [Roll: 0.011652] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 305.405029] [T/O: false ][Cruise: false ] +[Elevator: 0.043188] [Roll: -0.019403] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 304.916473] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.027258] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 304.436249] [T/O: false ][Cruise: false ] +[Elevator: 0.042884] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 303.933685] [T/O: false ][Cruise: false ] +[Elevator: 0.038139] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 303.435577] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 302.943329] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.027451] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 302.503418] [T/O: false ][Cruise: false ] +[Elevator: 0.059768] [Roll: -0.045026] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 302.067841] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.074510] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 301.623383] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.074510] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 301.212769] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.071067] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 300.796417] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.066667] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 300.374237] [T/O: false ][Cruise: false ] +[Elevator: 0.057532] [Roll: -0.019977] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 299.940460] [T/O: false ][Cruise: false ] +[Elevator: 0.061831] [Roll: 0.024281] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 299.466583] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.017611] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 299.021454] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011765] [Yaw: -0.003922] [Throttle:0.800000] [Flaps: 0.000000] [Data Ref: 298.511230] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011765] [Yaw: 0.058344] [Throttle:0.812453] [Flaps: 0.000000] [Data Ref: 298.021118] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011765] [Yaw: 0.061218] [Throttle:0.848915] [Flaps: 0.000000] [Data Ref: 297.506348] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011765] [Yaw: 0.072136] [Throttle:0.894838] [Flaps: 0.000000] [Data Ref: 296.936554] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.011765] [Yaw: 0.199639] [Throttle:0.938764] [Flaps: 0.000000] [Data Ref: 296.352051] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.026375] [Yaw: 0.207843] [Throttle:0.985006] [Flaps: 0.000000] [Data Ref: 295.716278] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.020006] [Yaw: 0.163175] [Throttle:0.999402] [Flaps: 0.000000] [Data Ref: 295.065155] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.010378] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.353638] [T/O: false ][Cruise: false ] +[Elevator: 0.075636] [Roll: -0.018519] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.668793] [T/O: false ][Cruise: false ] +[Elevator: 0.080770] [Roll: -0.063574] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.003204] [T/O: false ][Cruise: false ] +[Elevator: 0.073222] [Roll: -0.083641] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.311584] [T/O: false ][Cruise: false ] +[Elevator: 0.064889] [Roll: -0.090196] [Yaw: 0.002144] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.514008] [T/O: false ][Cruise: false ] +[Elevator: 0.049867] [Roll: -0.084225] [Yaw: -0.006907] [Throttle:0.988058] [Flaps: 0.000000] [Data Ref: 290.777527] [T/O: false ][Cruise: false ] +[Elevator: 0.038728] [Roll: -0.071076] [Yaw: -0.008331] [Throttle:0.949743] [Flaps: 0.000000] [Data Ref: 289.982269] [T/O: false ][Cruise: false ] +[Elevator: 0.038658] [Roll: -0.035310] [Yaw: -0.008401] [Throttle:0.898613] [Flaps: 0.000000] [Data Ref: 289.237152] [T/O: false ][Cruise: false ] +[Elevator: 0.040764] [Roll: -0.011765] [Yaw: -0.000825] [Throttle:0.851082] [Flaps: 0.000000] [Data Ref: 288.507202] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: -0.011765] [Yaw: 0.009985] [Throttle:0.802833] [Flaps: 0.000000] [Data Ref: 287.788055] [T/O: false ][Cruise: false ] +[Elevator: 0.077708] [Roll: -0.011765] [Yaw: 0.004851] [Throttle:0.781786] [Flaps: 0.000000] [Data Ref: 287.081726] [T/O: false ][Cruise: false ] +[Elevator: 0.184314] [Roll: -0.011765] [Yaw: 0.003922] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 286.365173] [T/O: false ][Cruise: false ] +[Elevator: 0.182550] [Roll: -0.010001] [Yaw: 0.003922] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 285.655182] [T/O: false ][Cruise: false ] +[Elevator: 0.178431] [Roll: -0.001961] [Yaw: 0.003922] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 284.916077] [T/O: false ][Cruise: false ] +[Elevator: 0.166113] [Roll: 0.006955] [Yaw: 0.006955] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 284.198364] [T/O: false ][Cruise: false ] +[Elevator: 0.128229] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 283.378510] [T/O: false ][Cruise: false ] +[Elevator: 0.121569] [Roll: 0.040435] [Yaw: 0.011765] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 282.609131] [T/O: false ][Cruise: false ] +[Elevator: 0.114717] [Roll: 0.050980] [Yaw: 0.018617] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 281.892426] [T/O: false ][Cruise: false ] +[Elevator: 0.072274] [Roll: 0.053664] [Yaw: 0.011765] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 281.149567] [T/O: false ][Cruise: false ] +[Elevator: 0.040535] [Roll: 0.087558] [Yaw: 0.020499] [Throttle:0.780392] [Flaps: 0.000000] [Data Ref: 280.466034] [T/O: false ][Cruise: false ] +[Elevator: 0.064217] [Roll: 0.037498] [Yaw: 0.064463] [Throttle:0.792527] [Flaps: 0.000000] [Data Ref: 279.811920] [T/O: false ][Cruise: false ] +[Elevator: 0.070706] [Roll: 0.004158] [Yaw: 0.086393] [Throttle:0.838507] [Flaps: 0.000000] [Data Ref: 279.195709] [T/O: false ][Cruise: false ] +[Elevator: 0.047004] [Roll: -0.018668] [Yaw: 0.062691] [Throttle:0.889781] [Flaps: 0.000000] [Data Ref: 278.636597] [T/O: false ][Cruise: false ] +[Elevator: 0.041657] [Roll: -0.033814] [Yaw: 0.031891] [Throttle:0.905882] [Flaps: 0.000000] [Data Ref: 278.229126] [T/O: false ][Cruise: false ] +[Elevator: 0.035529] [Roll: -0.035294] [Yaw: 0.141570] [Throttle:0.936314] [Flaps: 0.000000] [Data Ref: 277.899475] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.036426] [Yaw: 0.005053] [Throttle:0.949020] [Flaps: 0.000000] [Data Ref: 277.669739] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.045035] [Yaw: 0.021251] [Throttle:0.958506] [Flaps: 0.000000] [Data Ref: 277.547577] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.050980] [Yaw: 0.026199] [Throttle:0.993546] [Flaps: 0.000000] [Data Ref: 277.513397] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.045825] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.600250] [T/O: false ][Cruise: false ] +[Elevator: 0.051148] [Roll: -0.050479] [Yaw: -0.003587] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.750824] [T/O: false ][Cruise: false ] +[Elevator: 0.068593] [Roll: -0.023543] [Yaw: 0.009811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.012695] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: -0.007771] [Yaw: 0.007915] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.292755] [T/O: false ][Cruise: false ] +[Elevator: 0.088656] [Roll: -0.003922] [Yaw: 0.007073] [Throttle:0.978888] [Flaps: 0.000000] [Data Ref: 278.593475] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.959498] [Flaps: 0.000000] [Data Ref: 278.894012] [T/O: false ][Cruise: false ] +[Elevator: 0.093857] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.956863] [Flaps: 0.000000] [Data Ref: 279.230621] [T/O: false ][Cruise: false ] +[Elevator: 0.079505] [Roll: 0.002257] [Yaw: 0.003922] [Throttle:0.956863] [Flaps: 0.000000] [Data Ref: 279.560150] [T/O: false ][Cruise: false ] +[Elevator: 0.055443] [Roll: 0.003922] [Yaw: 0.022989] [Throttle:0.925084] [Flaps: 0.000000] [Data Ref: 279.899872] [T/O: false ][Cruise: false ] +[Elevator: 0.044276] [Roll: 0.003922] [Yaw: 0.007338] [Throttle:0.894182] [Flaps: 0.000000] [Data Ref: 280.266937] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.028136] [Yaw: 0.003922] [Throttle:0.890196] [Flaps: 0.000000] [Data Ref: 280.662323] [T/O: false ][Cruise: false ] +[Elevator: 0.071751] [Roll: 0.050980] [Yaw: 0.010819] [Throttle:0.890196] [Flaps: 0.000000] [Data Ref: 281.064362] [T/O: false ][Cruise: false ] +[Elevator: 0.056907] [Roll: 0.050980] [Yaw: 0.048886] [Throttle:0.879657] [Flaps: 0.000000] [Data Ref: 281.457794] [T/O: false ][Cruise: false ] +[Elevator: 0.048935] [Roll: 0.050980] [Yaw: 0.066667] [Throttle:0.835810] [Flaps: 0.000000] [Data Ref: 281.876282] [T/O: false ][Cruise: false ] +[Elevator: 0.039995] [Roll: 0.054123] [Yaw: 0.041524] [Throttle:0.792922] [Flaps: 0.000000] [Data Ref: 282.279297] [T/O: false ][Cruise: false ] +[Elevator: 0.038613] [Roll: 0.058824] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 282.747375] [T/O: false ][Cruise: false ] +[Elevator: 0.065497] [Roll: 0.043917] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 283.168396] [T/O: false ][Cruise: false ] +[Elevator: 0.097458] [Roll: 0.020189] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 283.626740] [T/O: false ][Cruise: false ] +[Elevator: 0.091481] [Roll: 0.000964] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 284.077637] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 284.592255] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.011765] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 285.113159] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.000410] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 285.623383] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.007839] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 286.155029] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 286.734375] [T/O: false ][Cruise: false ] +[Elevator: 0.079810] [Roll: 0.035722] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 287.326111] [T/O: false ][Cruise: false ] +[Elevator: 0.076496] [Roll: 0.045123] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 287.923065] [T/O: false ][Cruise: false ] +[Elevator: 0.087938] [Roll: 0.022996] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 288.490326] [T/O: false ][Cruise: false ] +[Elevator: 0.057639] [Roll: 0.000073] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 289.068268] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.010876] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 289.668701] [T/O: false ][Cruise: false ] +[Elevator: 0.043238] [Roll: -0.011664] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 290.334167] [T/O: false ][Cruise: false ] +[Elevator: 0.066694] [Roll: -0.003813] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 290.960449] [T/O: false ][Cruise: false ] +[Elevator: 0.070885] [Roll: 0.028659] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 291.629486] [T/O: false ][Cruise: false ] +[Elevator: 0.028048] [Roll: 0.043336] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 292.288208] [T/O: false ][Cruise: false ] +[Elevator: 0.054186] [Roll: 0.050980] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 292.983856] [T/O: false ][Cruise: false ] +[Elevator: 0.088388] [Roll: 0.047365] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 293.714691] [T/O: false ][Cruise: false ] +[Elevator: 0.073384] [Roll: 0.016231] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 294.445526] [T/O: false ][Cruise: false ] +[Elevator: 0.065395] [Roll: -0.005193] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 295.252380] [T/O: false ][Cruise: false ] +[Elevator: 0.067382] [Roll: -0.018183] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 296.046295] [T/O: false ][Cruise: false ] +[Elevator: 0.087582] [Roll: -0.037908] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 296.867065] [T/O: false ][Cruise: false ] +[Elevator: 0.071671] [Roll: -0.059160] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 297.703796] [T/O: false ][Cruise: false ] +[Elevator: 0.053901] [Roll: -0.093117] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 298.540924] [T/O: false ][Cruise: false ] +[Elevator: 0.040570] [Roll: -0.094997] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 299.414551] [T/O: false ][Cruise: false ] +[Elevator: 0.004264] [Roll: -0.086446] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 300.325928] [T/O: false ][Cruise: false ] +[Elevator: 0.000224] [Roll: -0.086499] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 301.258667] [T/O: false ][Cruise: false ] +[Elevator: -0.000326] [Roll: -0.094444] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 302.153961] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.098039] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 303.056396] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.098039] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 303.960907] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.098039] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 304.869446] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: -0.098039] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 305.809357] [T/O: false ][Cruise: false ] +[Elevator: 0.025865] [Roll: -0.078181] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 306.740875] [T/O: false ][Cruise: false ] +[Elevator: 0.070894] [Roll: -0.025032] [Yaw: 0.011765] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 307.695526] [T/O: false ][Cruise: false ] +[Elevator: 0.114194] [Roll: 0.003922] [Yaw: 0.006965] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 308.646210] [T/O: false ][Cruise: false ] +[Elevator: 0.119317] [Roll: -0.001126] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 309.562469] [T/O: false ][Cruise: false ] +[Elevator: 0.068816] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 310.458038] [T/O: false ][Cruise: false ] +[Elevator: 0.068260] [Roll: 0.007598] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 311.265808] [T/O: false ][Cruise: false ] +[Elevator: 0.094080] [Roll: 0.044381] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 312.100555] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.776471] [Flaps: 0.000000] [Data Ref: 312.871643] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.042859] [Yaw: 0.019747] [Throttle:0.763940] [Flaps: 0.000000] [Data Ref: 313.605804] [T/O: false ][Cruise: false ] +[Elevator: 0.089502] [Roll: 0.026757] [Yaw: 0.023286] [Throttle:0.721569] [Flaps: 0.000000] [Data Ref: 314.248077] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: 0.019115] [Yaw: -0.018130] [Throttle:0.719106] [Flaps: 0.000000] [Data Ref: 314.841370] [T/O: false ][Cruise: false ] +[Elevator: 0.083322] [Roll: 0.008857] [Yaw: 0.003922] [Throttle:0.680899] [Flaps: 0.000000] [Data Ref: 315.408569] [T/O: false ][Cruise: false ] +[Elevator: 0.088848] [Roll: -0.014461] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 315.920868] [T/O: false ][Cruise: false ] +[Elevator: 0.074281] [Roll: -0.044052] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 316.448517] [T/O: false ][Cruise: false ] +[Elevator: 0.065547] [Roll: -0.074510] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 316.991638] [T/O: false ][Cruise: false ] +[Elevator: 0.044839] [Roll: -0.052535] [Yaw: 0.005919] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 317.524658] [T/O: false ][Cruise: false ] +[Elevator: 0.006331] [Roll: 0.009355] [Yaw: 0.011765] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 318.062073] [T/O: false ][Cruise: false ] +[Elevator: -0.060996] [Roll: 0.012653] [Yaw: 0.011765] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 318.625153] [T/O: false ][Cruise: false ] +[Elevator: -0.096094] [Roll: 0.027451] [Yaw: 0.007755] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 319.272095] [T/O: false ][Cruise: false ] +[Elevator: 0.054767] [Roll: 0.041708] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 319.904877] [T/O: false ][Cruise: false ] +[Elevator: 0.087861] [Roll: 0.050980] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 320.548340] [T/O: false ][Cruise: false ] +[Elevator: 0.070638] [Roll: 0.021694] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 321.296875] [T/O: false ][Cruise: false ] +[Elevator: 0.072958] [Roll: 0.005473] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 322.053802] [T/O: false ][Cruise: false ] +[Elevator: 0.067585] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 322.824158] [T/O: false ][Cruise: false ] +[Elevator: -0.002747] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.670588] [Flaps: 0.000000] [Data Ref: 323.589020] [T/O: false ][Cruise: false ] +[Elevator: -0.003754] [Roll: 0.003922] [Yaw: 0.004005] [Throttle:0.662326] [Flaps: 0.000000] [Data Ref: 324.371338] [T/O: false ][Cruise: false ] +[Elevator: 0.015597] [Roll: 0.002006] [Yaw: 0.010807] [Throttle:0.621614] [Flaps: 0.000000] [Data Ref: 325.137054] [T/O: false ][Cruise: false ] +[Elevator: 0.041805] [Roll: -0.013097] [Yaw: 0.005254] [Throttle:0.607843] [Flaps: 0.000000] [Data Ref: 325.956207] [T/O: false ][Cruise: false ] +[Elevator: 0.033993] [Roll: -0.019608] [Yaw: 0.010463] [Throttle:0.600685] [Flaps: 0.000000] [Data Ref: 326.709503] [T/O: false ][Cruise: false ] +[Elevator: 0.035475] [Roll: -0.035656] [Yaw: 0.003922] [Throttle:0.558287] [Flaps: 0.000000] [Data Ref: 327.472565] [T/O: false ][Cruise: false ] +[Elevator: 0.058629] [Roll: -0.108086] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 328.180542] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.144523] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 328.887115] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.139481] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 329.514496] [T/O: false ][Cruise: false ] +[Elevator: 0.032646] [Roll: -0.042528] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 330.150574] [T/O: false ][Cruise: false ] +[Elevator: 0.038054] [Roll: 0.111062] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 330.751404] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.179950] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 331.239716] [T/O: false ][Cruise: false ] +[Elevator: 0.046184] [Roll: 0.123707] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 331.731903] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.038607] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.122894] [T/O: false ][Cruise: false ] +[Elevator: 0.052158] [Roll: 0.017453] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.523590] [T/O: false ][Cruise: false ] +[Elevator: 0.053872] [Roll: 0.042307] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.854980] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.061826] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.169220] [T/O: false ][Cruise: false ] +[Elevator: 0.084860] [Roll: 0.059891] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.431854] [T/O: false ][Cruise: false ] +[Elevator: 0.082532] [Roll: 0.012839] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.639587] [T/O: false ][Cruise: false ] +[Elevator: 0.011177] [Roll: 0.011569] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.824310] [T/O: false ][Cruise: false ] +[Elevator: -0.014847] [Roll: 0.002894] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.936523] [T/O: false ][Cruise: false ] +[Elevator: -0.033366] [Roll: -0.003922] [Yaw: 0.013563] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.037903] [T/O: false ][Cruise: false ] +[Elevator: -0.021254] [Roll: -0.003922] [Yaw: 0.041072] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.074646] [T/O: false ][Cruise: false ] +[Elevator: -0.009393] [Roll: 0.030730] [Yaw: 0.027999] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.110474] [T/O: false ][Cruise: false ] +[Elevator: -0.015649] [Roll: 0.115593] [Yaw: 0.000971] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.112823] [T/O: false ][Cruise: false ] +[Elevator: 0.024641] [Roll: 0.058379] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.096893] [T/O: false ][Cruise: false ] +[Elevator: 0.062550] [Roll: 0.050980] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 334.053131] [T/O: false ][Cruise: false ] +[Elevator: 0.056989] [Roll: -0.007421] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.986633] [T/O: false ][Cruise: false ] +[Elevator: 0.070869] [Roll: -0.067229] [Yaw: 0.002708] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.897614] [T/O: false ][Cruise: false ] +[Elevator: 0.038153] [Roll: -0.096324] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.758423] [T/O: false ][Cruise: false ] +[Elevator: 0.062657] [Roll: -0.098039] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.606934] [T/O: false ][Cruise: false ] +[Elevator: 0.023179] [Roll: -0.018311] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.332764] [T/O: false ][Cruise: false ] +[Elevator: 0.035252] [Roll: 0.027347] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 333.075867] [T/O: false ][Cruise: false ] +[Elevator: 0.079793] [Roll: 0.094199] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.738770] [T/O: false ][Cruise: false ] +[Elevator: 0.046050] [Roll: 0.127082] [Yaw: 0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 332.363647] [T/O: false ][Cruise: false ] +[Elevator: 0.073467] [Roll: 0.011616] [Yaw: 0.003773] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 331.844299] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.011493] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 331.339081] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.024544] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 330.840240] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 330.250244] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.022420] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 329.653595] [T/O: false ][Cruise: false ] +[Elevator: 0.017101] [Roll: 0.003922] [Yaw: -0.017423] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 328.960510] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: 0.001703] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 328.263092] [T/O: false ][Cruise: false ] +[Elevator: 0.014104] [Roll: 0.003922] [Yaw: -0.006261] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 327.529968] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.014561] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 326.720886] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 325.884552] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 324.978363] [T/O: false ][Cruise: false ] +[Elevator: 0.015440] [Roll: 0.003922] [Yaw: -0.015439] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 324.101685] [T/O: false ][Cruise: false ] +[Elevator: 0.077085] [Roll: 0.003922] [Yaw: -0.007410] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 323.104858] [T/O: false ][Cruise: false ] +[Elevator: 0.206282] [Roll: -0.001569] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 322.081726] [T/O: false ][Cruise: false ] +[Elevator: 0.239216] [Roll: -0.017034] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 320.886719] [T/O: false ][Cruise: false ] +[Elevator: 0.091023] [Roll: -0.011808] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 319.774658] [T/O: false ][Cruise: false ] +[Elevator: 0.061138] [Roll: 0.004384] [Yaw: -0.003922] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 318.537262] [T/O: false ][Cruise: false ] +[Elevator: 0.096911] [Roll: 0.014022] [Yaw: -0.002793] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 317.176941] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.028587] [Yaw: 0.006194] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 315.810760] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.030141] [Yaw: 0.021326] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 314.363800] [T/O: false ][Cruise: false ] +[Elevator: 0.090196] [Roll: 0.009614] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 312.922119] [T/O: false ][Cruise: false ] +[Elevator: 0.065743] [Roll: 0.003922] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 311.503113] [T/O: false ][Cruise: false ] +[Elevator: 0.001584] [Roll: 0.006259] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 310.001465] [T/O: false ][Cruise: false ] +[Elevator: -0.001230] [Roll: 0.011765] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 308.630432] [T/O: false ][Cruise: false ] +[Elevator: 0.028373] [Roll: 0.017198] [Yaw: 0.027451] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 307.182404] [T/O: false ][Cruise: false ] +[Elevator: 0.070838] [Roll: 0.023779] [Yaw: 0.023779] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 305.884186] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: 0.015628] [Yaw: 0.019608] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 304.507446] [T/O: false ][Cruise: false ] +[Elevator: 0.074536] [Roll: 0.003895] [Yaw: 0.019608] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 303.278137] [T/O: false ][Cruise: false ] +[Elevator: 0.078227] [Roll: -0.003922] [Yaw: 0.015481] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 302.144592] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.004390] [Yaw: 0.011765] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 301.036804] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.091739] [Yaw: 0.011765] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 300.016113] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.118642] [Yaw: 0.011765] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 298.996216] [T/O: false ][Cruise: false ] +[Elevator: 0.082576] [Roll: 0.061742] [Yaw: 0.015798] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 298.045013] [T/O: false ][Cruise: false ] +[Elevator: 0.046127] [Roll: 0.011426] [Yaw: 0.023614] [Throttle:0.533333] [Flaps: 0.000000] [Data Ref: 297.042419] [T/O: false ][Cruise: false ] +[Elevator: 0.016182] [Roll: -0.003922] [Yaw: 0.047886] [Throttle:0.519029] [Flaps: 0.000000] [Data Ref: 296.139679] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.080314] [Throttle:0.483137] [Flaps: 0.000000] [Data Ref: 295.273926] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.014892] [Yaw: 0.090196] [Throttle:0.438446] [Flaps: 0.000000] [Data Ref: 294.408112] [T/O: false ][Cruise: false ] +[Elevator: 0.032183] [Roll: 0.027451] [Yaw: 0.094928] [Throttle:0.393584] [Flaps: 0.000000] [Data Ref: 293.603943] [T/O: false ][Cruise: false ] +[Elevator: 0.044159] [Roll: 0.018586] [Yaw: 0.093607] [Throttle:0.352093] [Flaps: 0.000000] [Data Ref: 292.816925] [T/O: false ][Cruise: false ] +[Elevator: 0.064855] [Roll: 0.007140] [Yaw: 0.085571] [Throttle:0.307897] [Flaps: 0.000000] [Data Ref: 292.046753] [T/O: false ][Cruise: false ] +[Elevator: 0.079650] [Roll: 0.003922] [Yaw: 0.082353] [Throttle:0.261926] [Flaps: 0.000000] [Data Ref: 291.272827] [T/O: false ][Cruise: false ] +[Elevator: 0.077210] [Roll: -0.006365] [Yaw: 0.082353] [Throttle:0.218772] [Flaps: 0.000000] [Data Ref: 290.490448] [T/O: false ][Cruise: false ] +[Elevator: 0.069327] [Roll: -0.063592] [Yaw: 0.077170] [Throttle:0.175417] [Flaps: 0.000000] [Data Ref: 289.752380] [T/O: false ][Cruise: false ] +[Elevator: 0.072388] [Roll: -0.078753] [Yaw: 0.074510] [Throttle:0.129315] [Flaps: 0.000000] [Data Ref: 288.901611] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.054117] [Yaw: 0.074510] [Throttle:0.080261] [Flaps: 0.000000] [Data Ref: 288.106445] [T/O: false ][Cruise: false ] +[Elevator: 0.032397] [Roll: -0.072037] [Yaw: 0.074510] [Throttle:0.035907] [Flaps: 0.000000] [Data Ref: 287.349274] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.020895] [Yaw: 0.074510] [Throttle:0.000736] [Flaps: 0.000000] [Data Ref: 286.542450] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.016524] [Yaw: 0.073558] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 285.663940] [T/O: false ][Cruise: false ] +[Elevator: 0.063127] [Roll: 0.067176] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 284.904480] [T/O: false ][Cruise: false ] +[Elevator: 0.127020] [Roll: 0.140737] [Yaw: 0.065577] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 284.159790] [T/O: false ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.113726] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 283.382874] [T/O: false ][Cruise: false ] +[Elevator: 0.160184] [Roll: 0.112526] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 282.569031] [T/O: false ][Cruise: false ] +[Elevator: 0.134128] [Roll: 0.084870] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 281.741669] [T/O: false ][Cruise: false ] +[Elevator: -0.001103] [Roll: -0.014583] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 280.837219] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.041915] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 279.974365] [T/O: false ][Cruise: false ] +[Elevator: 0.011342] [Roll: -0.045362] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 279.090149] [T/O: false ][Cruise: false ] +[Elevator: -0.032374] [Roll: -0.077430] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 278.248352] [T/O: false ][Cruise: false ] +[Elevator: -0.030478] [Roll: -0.085380] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 277.441162] [T/O: false ][Cruise: false ] +[Elevator: -0.031677] [Roll: -0.144457] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 276.647430] [T/O: false ][Cruise: false ] +[Elevator: 0.000254] [Roll: -0.152433] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 275.886230] [T/O: false ][Cruise: false ] +[Elevator: 0.053765] [Roll: -0.220836] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 275.131683] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.178017] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 274.339355] [T/O: false ][Cruise: false ] +[Elevator: 0.057902] [Roll: -0.043601] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.691711] [T/O: false ][Cruise: false ] +[Elevator: 0.247504] [Roll: -0.010111] [Yaw: 0.053043] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 272.944489] [T/O: false ][Cruise: false ] +[Elevator: 0.127837] [Roll: 0.138436] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 272.265839] [T/O: false ][Cruise: false ] +[Elevator: 0.120735] [Roll: 0.190321] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 271.588531] [T/O: false ][Cruise: false ] +[Elevator: 0.054998] [Roll: -0.022977] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.856201] [T/O: false ][Cruise: false ] +[Elevator: 0.016759] [Roll: -0.025083] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.093140] [T/O: false ][Cruise: false ] +[Elevator: 0.072703] [Roll: 0.076257] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 269.338898] [T/O: false ][Cruise: false ] +[Elevator: 0.059137] [Roll: 0.183060] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 268.524078] [T/O: false ][Cruise: false ] +[Elevator: -0.177110] [Roll: 0.151663] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 267.678955] [T/O: false ][Cruise: false ] +[Elevator: -0.137062] [Roll: 0.085895] [Yaw: 0.048926] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.889648] [T/O: false ][Cruise: false ] +[Elevator: 0.000548] [Roll: -0.038711] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.010406] [T/O: false ][Cruise: false ] +[Elevator: -0.016532] [Roll: -0.044828] [Yaw: 0.040308] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 265.217865] [T/O: false ][Cruise: false ] +[Elevator: -0.010892] [Roll: -0.113725] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 264.363373] [T/O: false ][Cruise: false ] +[Elevator: 0.170737] [Roll: -0.079376] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 263.555237] [T/O: false ][Cruise: false ] +[Elevator: 0.145697] [Roll: -0.087548] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 262.713379] [T/O: false ][Cruise: false ] +[Elevator: 0.084461] [Roll: -0.001935] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 261.823669] [T/O: false ][Cruise: false ] +[Elevator: 0.182882] [Roll: 0.050430] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 260.925140] [T/O: false ][Cruise: false ] +[Elevator: 0.089873] [Roll: 0.183830] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 259.975708] [T/O: false ][Cruise: false ] +[Elevator: 0.071583] [Roll: 0.153955] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 259.037170] [T/O: false ][Cruise: false ] +[Elevator: 0.005173] [Roll: -0.011011] [Yaw: 0.035711] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 258.048767] [T/O: false ][Cruise: false ] +[Elevator: 0.035157] [Roll: -0.137255] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 256.957184] [T/O: false ][Cruise: false ] +[Elevator: 0.049800] [Roll: -0.101413] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.842575] [T/O: false ][Cruise: false ] +[Elevator: -0.001692] [Roll: -0.001115] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 254.752655] [T/O: false ][Cruise: false ] +[Elevator: -0.131911] [Roll: -0.023804] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 253.659225] [T/O: false ][Cruise: false ] +[Elevator: -0.379099] [Roll: -0.086145] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 252.459686] [T/O: false ][Cruise: false ] +[Elevator: -0.182032] [Roll: -0.046678] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 251.279938] [T/O: false ][Cruise: false ] +[Elevator: -0.015088] [Roll: 0.014025] [Yaw: 0.039770] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 250.111832] [T/O: false ][Cruise: false ] +[Elevator: 0.170236] [Roll: 0.017547] [Yaw: 0.030342] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 248.835876] [T/O: false ][Cruise: false ] +[Elevator: 0.280472] [Roll: 0.005856] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 247.629898] [T/O: false ][Cruise: false ] +[Elevator: 0.258881] [Roll: 0.003922] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 246.449875] [T/O: false ][Cruise: false ] +[Elevator: 0.191429] [Roll: -0.031341] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 245.208847] [T/O: false ][Cruise: false ] +[Elevator: 0.120672] [Roll: -0.077722] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 243.832443] [T/O: false ][Cruise: false ] +[Elevator: 0.067446] [Roll: -0.074640] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 242.479065] [T/O: false ][Cruise: false ] +[Elevator: 0.003160] [Roll: -0.011765] [Yaw: 0.043899] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 240.946655] [T/O: false ][Cruise: false ] +[Elevator: 0.016283] [Roll: -0.007724] [Yaw: 0.042899] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 239.452484] [T/O: false ][Cruise: false ] +[Elevator: 0.064758] [Roll: 0.003922] [Yaw: 0.014732] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 237.872833] [T/O: false ][Cruise: false ] +[Elevator: 0.052584] [Roll: 0.007070] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 236.201813] [T/O: false ][Cruise: false ] +[Elevator: 0.070802] [Roll: 0.020036] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 234.514725] [T/O: false ][Cruise: false ] +[Elevator: 0.060210] [Roll: 0.032218] [Yaw: 0.008688] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 232.760590] [T/O: false ][Cruise: false ] +[Elevator: 0.068798] [Roll: 0.076869] [Yaw: 0.017704] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 231.043274] [T/O: false ][Cruise: false ] +[Elevator: 0.094153] [Roll: 0.096744] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 229.414047] [T/O: false ][Cruise: false ] +[Elevator: 0.078946] [Roll: 0.085311] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 227.666824] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.089237] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 225.956436] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.059092] [Yaw: 0.011832] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 224.256058] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.051057] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 222.676941] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 221.132996] [T/O: false ][Cruise: false ] +[Elevator: 0.089804] [Roll: -0.017845] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 219.488083] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 217.877914] [T/O: false ][Cruise: false ] +[Elevator: 0.076374] [Roll: -0.027451] [Yaw: 0.009901] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 216.362396] [T/O: false ][Cruise: false ] +[Elevator: 0.079748] [Roll: -0.035266] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 214.748489] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.059845] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 213.208832] [T/O: false ][Cruise: false ] +[Elevator: 0.070999] [Roll: -0.074510] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 211.672607] [T/O: false ][Cruise: false ] +[Elevator: 0.058553] [Roll: -0.074510] [Yaw: 0.007978] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 210.156982] [T/O: false ][Cruise: false ] +[Elevator: 0.046200] [Roll: -0.060168] [Yaw: 0.006984] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 208.628479] [T/O: false ][Cruise: false ] +[Elevator: 0.055067] [Roll: -0.015192] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 207.206512] [T/O: false ][Cruise: false ] +[Elevator: 0.080785] [Roll: 0.094903] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 205.770905] [T/O: false ][Cruise: false ] +[Elevator: 0.084979] [Roll: 0.158123] [Yaw: 0.009139] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 204.252365] [T/O: false ][Cruise: false ] +[Elevator: 0.051886] [Roll: 0.065041] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 202.751648] [T/O: false ][Cruise: false ] +[Elevator: 0.093025] [Roll: -0.000340] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 201.305176] [T/O: false ][Cruise: false ] +[Elevator: 0.044583] [Roll: -0.059546] [Yaw: 0.012126] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 199.826813] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.077654] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 198.335419] [T/O: false ][Cruise: false ] +[Elevator: 0.069700] [Roll: -0.096436] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 196.827698] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.084801] [Yaw: 0.016910] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 195.370712] [T/O: false ][Cruise: false ] +[Elevator: 0.058227] [Roll: -0.056394] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 193.787399] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.014638] [Yaw: 0.006601] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 192.306671] [T/O: false ][Cruise: false ] +[Elevator: 0.056422] [Roll: -0.003922] [Yaw: -0.016568] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 190.931519] [T/O: false ][Cruise: false ] +[Elevator: 0.067459] [Roll: -0.003922] [Yaw: -0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.391235] [T/O: false ][Cruise: false ] +[Elevator: 0.057036] [Roll: -0.003922] [Yaw: -0.015802] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.863373] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 186.396545] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.002194] [Yaw: 0.006582] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.781693] [T/O: false ][Cruise: false ] +[Elevator: 0.330416] [Roll: 0.153863] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 183.243881] [T/O: false ][Cruise: false ] +[Elevator: 0.614441] [Roll: 0.142875] [Yaw: 0.005046] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.713303] [T/O: false ][Cruise: false ] +[Elevator: 0.094475] [Roll: 0.019634] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 180.148148] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 178.404037] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 176.801895] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.159332] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005686] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.435791] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.026744] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.575241] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.018498] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.861252] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.009605] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.132034] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006983] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.400620] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.747955] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.007791] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.263275] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.745316] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006208] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.276291] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.003326] [T/O: false ][Cruise: false ] +[Elevator: 0.031585] [Roll: -0.451203] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.617798] [T/O: false ][Cruise: false ] +[Elevator: 0.034664] [Roll: -0.568223] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.355774] [T/O: false ][Cruise: false ] +[Elevator: 0.033948] [Roll: -0.489846] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.106705] [T/O: false ][Cruise: false ] +[Elevator: 0.032348] [Roll: -0.368227] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.876846] [T/O: false ][Cruise: false ] +[Elevator: 0.030701] [Roll: -0.243057] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.635101] [T/O: false ][Cruise: false ] +[Elevator: 0.029039] [Roll: -0.116772] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.407425] [T/O: false ][Cruise: false ] +[Elevator: 0.029964] [Roll: 0.002202] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.168060] [T/O: false ][Cruise: false ] +[Elevator: 0.087819] [Roll: -0.037383] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.934509] [T/O: false ][Cruise: false ] +[Elevator: 0.146934] [Roll: -0.077830] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.699829] [T/O: false ][Cruise: false ] +[Elevator: 0.204232] [Roll: -0.117034] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.439774] [T/O: false ][Cruise: false ] +[Elevator: 0.267249] [Roll: -0.160151] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.216324] [T/O: false ][Cruise: false ] +[Elevator: 0.324665] [Roll: -0.199285] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.975235] [T/O: false ][Cruise: false ] +[Elevator: 0.273142] [Roll: -0.154631] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.715485] [T/O: false ][Cruise: false ] +[Elevator: 0.218565] [Roll: -0.107331] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.485153] [T/O: false ][Cruise: false ] +[Elevator: 0.166612] [Roll: -0.062306] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.255447] [T/O: false ][Cruise: false ] +[Elevator: 0.113678] [Roll: -0.016430] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.998779] [T/O: false ][Cruise: false ] +[Elevator: 0.102523] [Roll: -0.003923] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.765839] [T/O: false ][Cruise: false ] +[Elevator: 0.121431] [Roll: -0.015955] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.532822] [T/O: false ][Cruise: false ] +[Elevator: 0.140452] [Roll: -0.028059] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.299805] [T/O: false ][Cruise: false ] +[Elevator: 0.159631] [Roll: -0.040264] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.069794] [T/O: false ][Cruise: false ] +[Elevator: 0.174089] [Roll: -0.050280] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.828491] [T/O: false ][Cruise: false ] +[Elevator: 0.147090] [Roll: -0.042339] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.592300] [T/O: false ][Cruise: false ] +[Elevator: 0.119882] [Roll: -0.034337] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.354263] [T/O: false ][Cruise: false ] +[Elevator: 0.093196] [Roll: -0.026488] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.109009] [T/O: false ][Cruise: false ] +[Elevator: 0.066586] [Roll: -0.018661] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.241135] [T/O: false ][Cruise: false ] +[Elevator: 0.124343] [Roll: -0.035649] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.378250] [T/O: false ][Cruise: false ] +[Elevator: 0.119518] [Roll: -0.014737] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.534973] [T/O: false ][Cruise: false ] +[Elevator: 0.260974] [Roll: -0.144086] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.676163] [T/O: false ][Cruise: false ] +[Elevator: 0.111996] [Roll: -0.053925] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.785690] [T/O: false ][Cruise: false ] +[Elevator: 0.033146] [Roll: -0.428896] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.099121] [T/O: false ][Cruise: false ] +[Elevator: 0.023018] [Roll: -0.125680] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.401215] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.850647] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.288223] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011135] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.764069] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.004814] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.448364] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.010201] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.175003] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006092] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.882431] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.014567] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.609238] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.023259] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.363861] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.016266] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.139557] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 176.982895] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 178.675995] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 180.322571] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.995789] [T/O: false ][Cruise: false ] +[Elevator: 0.590124] [Roll: 0.123660] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.168076] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 192.659714] [T/O: false ][Cruise: false ] +[Elevator: 0.059602] [Roll: -0.052955] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 200.163254] [T/O: false ][Cruise: false ] +[Elevator: 0.088042] [Roll: 0.003219] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 207.713272] [T/O: false ][Cruise: false ] +[Elevator: 0.048104] [Roll: -0.065879] [Yaw: 0.008888] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 216.305786] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 224.784958] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.087016] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 233.898819] [T/O: false ][Cruise: false ] +[Elevator: 0.061014] [Roll: 0.009881] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 242.653778] [T/O: false ][Cruise: false ] +[Elevator: 0.120823] [Roll: -0.077621] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 249.446625] [T/O: false ][Cruise: false ] +[Elevator: -0.024217] [Roll: 0.009460] [Yaw: 0.041291] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.798218] [T/O: false ][Cruise: false ] +[Elevator: 0.050031] [Roll: -0.137255] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 261.259125] [T/O: false ][Cruise: false ] +[Elevator: 0.083201] [Roll: 0.006250] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 265.472015] [T/O: false ][Cruise: false ] +[Elevator: -0.002516] [Roll: -0.052497] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 269.689423] [T/O: false ][Cruise: false ] +[Elevator: 0.020241] [Roll: -0.034368] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.700409] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.097967] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 277.702911] [T/O: false ][Cruise: false ] +[Elevator: -0.035025] [Roll: -0.074778] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 282.147919] [T/O: false ][Cruise: false ] +[Elevator: 0.160784] [Roll: 0.113726] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 286.633026] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.069599] [Yaw: 0.074510] [Throttle:0.028567] [Flaps: 0.000000] [Data Ref: 291.015198] [T/O: false ][Cruise: false ] +[Elevator: 0.075509] [Roll: 0.003922] [Yaw: 0.082353] [Throttle:0.284701] [Flaps: 0.000000] [Data Ref: 295.626282] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003922] [Yaw: 0.046412] [Throttle:0.520061] [Flaps: 0.000000] [Data Ref: 296.919891] [T/O: false ][Cruise: false ] +[Elevator: 0.019624] [Roll: -0.003922] [Yaw: 0.053621] [Throttle:0.515014] [Flaps: 0.000000] [Data Ref: 295.988983] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003922] [Yaw: 0.085243] [Throttle:0.474921] [Flaps: 0.000000] [Data Ref: 295.110107] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.020829] [Yaw: 0.090196] [Throttle:0.429541] [Flaps: 0.000000] [Data Ref: 294.174652] [T/O: false ][Cruise: false ] +[Elevator: 0.034552] [Roll: 0.027451] [Yaw: 0.097297] [Throttle:0.380551] [Flaps: 0.000000] [Data Ref: 293.231842] [T/O: false ][Cruise: false ] +[Elevator: 0.051767] [Roll: 0.011503] [Yaw: 0.089934] [Throttle:0.331892] [Flaps: 0.000000] [Data Ref: 292.424194] [T/O: false ][Cruise: false ] +[Elevator: 0.075528] [Roll: 0.003922] [Yaw: 0.082353] [Throttle:0.284596] [Flaps: 0.000000] [Data Ref: 291.569153] [T/O: false ][Cruise: false ] +[Elevator: 0.080494] [Roll: 0.000203] [Yaw: 0.082353] [Throttle:0.236832] [Flaps: 0.000000] [Data Ref: 290.809509] [T/O: false ][Cruise: false ] +[Elevator: 0.072605] [Roll: -0.030811] [Yaw: 0.080448] [Throttle:0.193446] [Flaps: 0.000000] [Data Ref: 290.068054] [T/O: false ][Cruise: false ] +[Elevator: 0.068695] [Roll: -0.086139] [Yaw: 0.074510] [Throttle:0.149628] [Flaps: 0.000000] [Data Ref: 289.305359] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.067436] [Yaw: 0.074510] [Throttle:0.104679] [Flaps: 0.000000] [Data Ref: 288.512543] [T/O: false ][Cruise: false ] +[Elevator: 0.058856] [Roll: -0.058807] [Yaw: 0.074510] [Throttle:0.060160] [Flaps: 0.000000] [Data Ref: 287.727814] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.048244] [Yaw: 0.074510] [Throttle:0.016364] [Flaps: 0.000000] [Data Ref: 286.925537] [T/O: false ][Cruise: false ] +[Elevator: 0.041357] [Roll: -0.001066] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 286.041656] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.040520] [Yaw: 0.068759] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 285.180725] [T/O: false ][Cruise: false ] +[Elevator: 0.110377] [Roll: 0.130176] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 284.270599] [T/O: false ][Cruise: false ] +[Elevator: 0.159392] [Roll: 0.114840] [Yaw: 0.059102] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 283.405518] [T/O: false ][Cruise: false ] +[Elevator: 0.160690] [Roll: 0.113537] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 282.550598] [T/O: false ][Cruise: false ] +[Elevator: 0.126606] [Roll: 0.079604] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 281.666962] [T/O: false ][Cruise: false ] +[Elevator: 0.001818] [Roll: -0.017505] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 280.739746] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.040919] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 279.830383] [T/O: false ][Cruise: false ] +[Elevator: -0.004206] [Roll: -0.055080] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 278.930328] [T/O: false ][Cruise: false ] +[Elevator: -0.030691] [Roll: -0.079113] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 278.055328] [T/O: false ][Cruise: false ] +[Elevator: -0.032496] [Roll: -0.087398] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 277.192780] [T/O: false ][Cruise: false ] +[Elevator: -0.028919] [Roll: -0.185817] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 276.328369] [T/O: false ][Cruise: false ] +[Elevator: 0.022965] [Roll: -0.107012] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 275.499420] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.288008] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 274.709229] [T/O: false ][Cruise: false ] +[Elevator: 0.069164] [Roll: -0.069878] [Yaw: 0.058824] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.977112] [T/O: false ][Cruise: false ] +[Elevator: 0.125592] [Roll: -0.020868] [Yaw: 0.056629] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.451569] [T/O: false ][Cruise: false ] +[Elevator: 0.252743] [Roll: -0.009648] [Yaw: 0.052889] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 273.072876] [T/O: false ][Cruise: false ] +[Elevator: 0.161624] [Roll: 0.113096] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 272.346344] [T/O: false ][Cruise: false ] +[Elevator: 0.108341] [Roll: 0.188944] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 271.608246] [T/O: false ][Cruise: false ] +[Elevator: 0.058919] [Roll: -0.012723] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.869934] [T/O: false ][Cruise: false ] +[Elevator: 0.016923] [Roll: -0.025519] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 270.132416] [T/O: false ][Cruise: false ] +[Elevator: 0.066371] [Roll: 0.067111] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 269.383057] [T/O: false ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.179607] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 268.575653] [T/O: false ][Cruise: false ] +[Elevator: -0.176890] [Roll: 0.152103] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 267.781555] [T/O: false ][Cruise: false ] +[Elevator: -0.162517] [Roll: 0.113563] [Yaw: 0.050033] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.895172] [T/O: false ][Cruise: false ] +[Elevator: 0.000672] [Roll: -0.038154] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 266.039886] [T/O: false ][Cruise: false ] +[Elevator: -0.014839] [Roll: -0.041443] [Yaw: 0.040477] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 265.216064] [T/O: false ][Cruise: false ] +[Elevator: -0.010579] [Roll: -0.113549] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 264.409882] [T/O: false ][Cruise: false ] +[Elevator: 0.157890] [Roll: -0.078817] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 263.609009] [T/O: false ][Cruise: false ] +[Elevator: 0.147466] [Roll: -0.087450] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 262.766205] [T/O: false ][Cruise: false ] +[Elevator: 0.085875] [Roll: -0.011131] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 261.920746] [T/O: false ][Cruise: false ] +[Elevator: 0.171747] [Roll: 0.046147] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 261.019104] [T/O: false ][Cruise: false ] +[Elevator: 0.095084] [Roll: 0.177389] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 260.017578] [T/O: false ][Cruise: false ] +[Elevator: 0.071906] [Roll: 0.154708] [Yaw: 0.035294] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 259.018341] [T/O: false ][Cruise: false ] +[Elevator: 0.006945] [Roll: -0.021051] [Yaw: 0.036302] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 257.957336] [T/O: false ][Cruise: false ] +[Elevator: 0.038433] [Roll: -0.137255] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 256.855469] [T/O: false ][Cruise: false ] +[Elevator: 0.042804] [Roll: -0.086547] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.913467] [T/O: false ][Cruise: false ] +[Elevator: 0.004435] [Roll: -0.005012] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 255.618134] [T/O: false ][Cruise: false ] +[Elevator: -0.005214] [Roll: 0.000646] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 254.435242] [T/O: false ][Cruise: false ] +[Elevator: -0.241440] [Roll: -0.049080] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 253.261353] [T/O: false ][Cruise: false ] +[Elevator: -0.309462] [Roll: -0.079181] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 251.899078] [T/O: false ][Cruise: false ] +[Elevator: -0.051823] [Roll: -0.001778] [Yaw: 0.043137] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 250.714920] [T/O: false ][Cruise: false ] +[Elevator: 0.011377] [Roll: 0.027257] [Yaw: 0.035359] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 249.502228] [T/O: false ][Cruise: false ] +[Elevator: 0.266399] [Roll: 0.010547] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 248.364090] [T/O: false ][Cruise: false ] +[Elevator: 0.281611] [Roll: 0.003922] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 247.067001] [T/O: false ][Cruise: false ] +[Elevator: 0.229068] [Roll: -0.010430] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 245.847870] [T/O: false ][Cruise: false ] +[Elevator: 0.157668] [Roll: -0.053058] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 244.604034] [T/O: false ][Cruise: false ] +[Elevator: 0.096577] [Roll: -0.079495] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 243.215118] [T/O: false ][Cruise: false ] +[Elevator: 0.032421] [Roll: -0.040264] [Yaw: 0.036013] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 241.829224] [T/O: false ][Cruise: false ] +[Elevator: -0.000918] [Roll: -0.011765] [Yaw: 0.047977] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 240.207901] [T/O: false ][Cruise: false ] +[Elevator: 0.058007] [Roll: 0.000621] [Yaw: 0.026209] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 238.610489] [T/O: false ][Cruise: false ] +[Elevator: 0.046753] [Roll: 0.003922] [Yaw: 0.005730] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 237.005890] [T/O: false ][Cruise: false ] +[Elevator: 0.066378] [Roll: 0.011668] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 235.324554] [T/O: false ][Cruise: false ] +[Elevator: 0.072478] [Roll: 0.028128] [Yaw: 0.004599] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 233.593277] [T/O: false ][Cruise: false ] +[Elevator: 0.055247] [Roll: 0.045249] [Yaw: 0.013187] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 231.902863] [T/O: false ][Cruise: false ] +[Elevator: 0.081939] [Roll: 0.092673] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 230.205292] [T/O: false ][Cruise: false ] +[Elevator: 0.089644] [Roll: 0.092442] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 228.513748] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.085129] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 226.832092] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.076840] [Yaw: 0.016269] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 225.236130] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.055405] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 223.540359] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: 0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 221.859833] [T/O: false ][Cruise: false ] +[Elevator: 0.082267] [Roll: 0.016074] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 220.119278] [T/O: false ][Cruise: false ] +[Elevator: 0.080398] [Roll: -0.024507] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 218.576508] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.027451] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 217.084839] [T/O: false ][Cruise: false ] +[Elevator: 0.081129] [Roll: -0.027451] [Yaw: 0.005145] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 215.524048] [T/O: false ][Cruise: false ] +[Elevator: 0.075537] [Roll: -0.047900] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 213.961014] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.072535] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 212.401627] [T/O: false ][Cruise: false ] +[Elevator: 0.066881] [Roll: -0.074510] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 210.926834] [T/O: false ][Cruise: false ] +[Elevator: 0.050331] [Roll: -0.072562] [Yaw: 0.011116] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 209.390961] [T/O: false ][Cruise: false ] +[Elevator: 0.045999] [Roll: -0.042394] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 207.847305] [T/O: false ][Cruise: false ] +[Elevator: 0.068746] [Roll: 0.040729] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 206.325134] [T/O: false ][Cruise: false ] +[Elevator: 0.088149] [Roll: 0.145443] [Yaw: 0.005969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 204.959778] [T/O: false ][Cruise: false ] +[Elevator: 0.072580] [Roll: 0.135399] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 203.603302] [T/O: false ][Cruise: false ] +[Elevator: 0.056953] [Roll: 0.025426] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 202.162415] [T/O: false ][Cruise: false ] +[Elevator: 0.078491] [Roll: -0.023470] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 200.789673] [T/O: false ][Cruise: false ] +[Elevator: 0.056173] [Roll: -0.065341] [Yaw: 0.015024] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 199.337616] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.084753] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 197.931015] [T/O: false ][Cruise: false ] +[Elevator: 0.061553] [Roll: -0.093720] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 196.311172] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.078101] [Yaw: 0.013560] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 194.738800] [T/O: false ][Cruise: false ] +[Elevator: 0.064691] [Roll: -0.040233] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 193.325089] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.005237] [Yaw: 0.004250] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 191.900009] [T/O: false ][Cruise: false ] +[Elevator: 0.051741] [Roll: -0.003922] [Yaw: -0.025930] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 190.497559] [T/O: false ][Cruise: false ] +[Elevator: 0.073961] [Roll: -0.003922] [Yaw: -0.027085] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 188.974319] [T/O: false ][Cruise: false ] +[Elevator: 0.051427] [Roll: -0.003922] [Yaw: -0.012062] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.468307] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003561] [Yaw: -0.010684] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.962524] [T/O: false ][Cruise: false ] +[Elevator: 0.078568] [Roll: 0.018725] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.359421] [T/O: false ][Cruise: false ] +[Elevator: 0.413285] [Roll: 0.170813] [Yaw: 0.010633] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 182.747589] [T/O: false ][Cruise: false ] +[Elevator: 0.532288] [Roll: 0.111521] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.149933] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.576584] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.933502] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 176.314560] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 174.641296] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.012672] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 172.865311] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.024479] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.157837] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.016274] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.442078] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.007388] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 167.779556] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008075] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.203201] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006962] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.508835] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.009003] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.988678] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.550903] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005610] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.239822] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.028503] [T/O: false ][Cruise: false ] +[Elevator: 0.033175] [Roll: -0.511634] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.798172] [T/O: false ][Cruise: false ] +[Elevator: 0.028159] [Roll: -0.049867] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.597260] [T/O: false ][Cruise: false ] +[Elevator: 0.288390] [Roll: -0.174616] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.432510] [T/O: false ][Cruise: false ] +[Elevator: 0.101122] [Roll: -0.005547] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.275772] [T/O: false ][Cruise: false ] +[Elevator: 0.168211] [Roll: -0.048551] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.089615] [T/O: false ][Cruise: false ] +[Elevator: 0.043895] [Roll: -0.011512] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 151.868622] [T/O: false ][Cruise: false ] +[Elevator: 0.067855] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.648529] [T/O: false ][Cruise: false ] +[Elevator: 0.065972] [Roll: -0.008190] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.254547] [T/O: false ][Cruise: false ] +[Elevator: 0.037222] [Roll: -0.015237] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.928650] [T/O: false ][Cruise: false ] +[Elevator: 0.067305] [Roll: 0.008938] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 146.636154] [T/O: false ][Cruise: false ] +[Elevator: 0.079429] [Roll: 0.056549] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.210495] [T/O: false ][Cruise: false ] +[Elevator: 0.078512] [Roll: 0.133091] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 143.917892] [T/O: false ][Cruise: false ] +[Elevator: 0.077712] [Roll: 0.084439] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 142.459808] [T/O: false ][Cruise: false ] +[Elevator: 0.068894] [Roll: 0.086905] [Yaw: 0.037619] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.065155] [T/O: false ][Cruise: false ] +[Elevator: 0.073559] [Roll: 0.022226] [Yaw: 0.085441] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.640549] [T/O: false ][Cruise: false ] +[Elevator: 0.025834] [Roll: 0.004811] [Yaw: 0.118011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.311661] [T/O: false ][Cruise: false ] +[Elevator: 0.045104] [Roll: 0.023044] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 136.899429] [T/O: false ][Cruise: false ] +[Elevator: 0.172827] [Roll: 0.048953] [Yaw: 0.114401] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.537903] [T/O: false ][Cruise: false ] +[Elevator: 0.230918] [Roll: 0.094071] [Yaw: 0.097318] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.230515] [T/O: false ][Cruise: false ] +[Elevator: 0.075934] [Roll: 0.017468] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.841339] [T/O: false ][Cruise: false ] +[Elevator: 0.156089] [Roll: 0.041574] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.549088] [T/O: false ][Cruise: false ] +[Elevator: 0.076268] [Roll: 0.049624] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.208801] [T/O: false ][Cruise: false ] +[Elevator: 0.059575] [Roll: 0.150898] [Yaw: 0.080075] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.916046] [T/O: false ][Cruise: false ] +[Elevator: 0.009624] [Roll: 0.009864] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.625069] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.006897] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.258698] [T/O: false ][Cruise: false ] +[Elevator: 0.052337] [Roll: 0.022430] [Yaw: 0.070955] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.894569] [T/O: false ][Cruise: false ] +[Elevator: 0.058370] [Roll: 0.001717] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.536575] [T/O: false ][Cruise: false ] +[Elevator: 0.068793] [Roll: -0.040132] [Yaw: 0.061536] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.294678] [T/O: false ][Cruise: false ] +[Elevator: 0.066907] [Roll: -0.071575] [Yaw: 0.053675] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.046867] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.115200] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.780746] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.135155] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.557663] [T/O: false ][Cruise: false ] +[Elevator: 0.071637] [Roll: -0.130848] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.198494] [T/O: false ][Cruise: false ] +[Elevator: 0.082159] [Roll: -0.091168] [Yaw: 0.058629] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 115.902130] [T/O: false ][Cruise: false ] +[Elevator: 0.130001] [Roll: -0.049803] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 114.621475] [T/O: false ][Cruise: false ] +[Elevator: 0.153961] [Roll: -0.003922] [Yaw: -0.002902] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 113.211708] [T/O: false ][Cruise: false ] +[Elevator: 0.156270] [Roll: 0.000592] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 111.965126] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.021176] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 110.575867] [T/O: false ][Cruise: false ] +[Elevator: 0.130296] [Roll: 0.032090] [Yaw: 0.006241] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 109.119102] [T/O: false ][Cruise: false ] +[Elevator: 0.117076] [Roll: 0.036437] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.618217] [T/O: false ][Cruise: false ] +[Elevator: 0.116487] [Roll: 0.042696] [Yaw: 0.016846] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 106.179024] [T/O: false ][Cruise: false ] +[Elevator: 0.119341] [Roll: 0.123987] [Yaw: 0.025224] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 104.709076] [T/O: false ][Cruise: false ] +[Elevator: 0.115292] [Roll: 0.159218] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 103.212914] [T/O: false ][Cruise: false ] +[Elevator: 0.120116] [Roll: 0.160784] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 101.832054] [T/O: false ][Cruise: false ] +[Elevator: 0.107059] [Roll: 0.160784] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 100.206505] [T/O: false ][Cruise: false ] +[Elevator: 0.094240] [Roll: 0.133700] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 98.709717] [T/O: false ][Cruise: false ] +[Elevator: 0.051546] [Roll: 0.003922] [Yaw: 0.027168] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 97.178413] [T/O: false ][Cruise: false ] +[Elevator: 0.063307] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 95.736610] [T/O: false ][Cruise: false ] +[Elevator: 0.031919] [Roll: -0.004516] [Yaw: 0.021295] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 94.232124] [T/O: false ][Cruise: false ] +[Elevator: 0.021553] [Roll: -0.048907] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 92.737663] [T/O: false ][Cruise: false ] +[Elevator: 0.037725] [Roll: -0.121018] [Yaw: 0.040293] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.333130] [T/O: false ][Cruise: false ] +[Elevator: 0.065286] [Roll: -0.200470] [Yaw: 0.063435] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 89.915359] [T/O: false ][Cruise: false ] +[Elevator: 0.070792] [Roll: -0.216094] [Yaw: 0.036518] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 88.518547] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.162913] [Yaw: 0.006773] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 87.098969] [T/O: false ][Cruise: false ] +[Elevator: 0.090682] [Roll: -0.089225] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 85.783241] [T/O: false ][Cruise: false ] +[Elevator: 0.120586] [Roll: 0.015678] [Yaw: 0.011437] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.469505] [T/O: false ][Cruise: false ] +[Elevator: 0.147636] [Roll: 0.057070] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 83.090866] [T/O: false ][Cruise: false ] +[Elevator: 0.182026] [Roll: 0.142810] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 81.800148] [T/O: false ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.167362] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 80.455025] [T/O: false ][Cruise: false ] +[Elevator: 0.173390] [Roll: 0.211206] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 79.085518] [T/O: false ][Cruise: false ] +[Elevator: 0.116401] [Roll: 0.119843] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 77.686386] [T/O: false ][Cruise: false ] +[Elevator: 0.083698] [Roll: 0.093558] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 76.281357] [T/O: false ][Cruise: false ] +[Elevator: 0.093047] [Roll: 0.054533] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 74.830887] [T/O: false ][Cruise: false ] +[Elevator: 0.060452] [Roll: 0.005816] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 73.305382] [T/O: false ][Cruise: false ] +[Elevator: 0.071107] [Roll: -0.002787] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 71.854683] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.354622] [T/O: false ][Cruise: false ] +[Elevator: 0.058868] [Roll: -0.027385] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.878532] [T/O: false ][Cruise: false ] +[Elevator: 0.066584] [Roll: -0.081777] [Yaw: 0.027369] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.321220] [T/O: false ][Cruise: false ] +[Elevator: 0.083721] [Roll: -0.101459] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.850136] [T/O: false ][Cruise: false ] +[Elevator: 0.105036] [Roll: -0.144252] [Yaw: 0.025702] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.235886] [T/O: false ][Cruise: false ] +[Elevator: 0.126796] [Roll: -0.166012] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.702602] [T/O: false ][Cruise: false ] +[Elevator: 0.132373] [Roll: -0.153581] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.148495] [T/O: false ][Cruise: false ] +[Elevator: 0.120104] [Roll: -0.107607] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.636112] [T/O: false ][Cruise: false ] +[Elevator: 0.183876] [Roll: -0.060957] [Yaw: 0.015090] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.127190] [T/O: false ][Cruise: false ] +[Elevator: 0.286423] [Roll: -0.026378] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.636738] [T/O: false ][Cruise: false ] +[Elevator: 0.309804] [Roll: -0.001393] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.113285] [T/O: false ][Cruise: false ] +[Elevator: 0.315450] [Roll: 0.037798] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.572353] [T/O: false ][Cruise: false ] +[Elevator: 0.248577] [Roll: 0.148830] [Yaw: 0.017521] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.109962] [T/O: false ][Cruise: false ] +[Elevator: 0.097197] [Roll: 0.166266] [Yaw: 0.025624] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.488033] [T/O: false ][Cruise: false ] +[Elevator: 0.032386] [Roll: 0.035206] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.922596] [T/O: false ][Cruise: false ] +[Elevator: 0.074311] [Roll: 0.207016] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.460728] [T/O: false ][Cruise: false ] +[Elevator: 0.176528] [Roll: 0.027162] [Yaw: 0.019550] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.778736] [T/O: false ][Cruise: false ] +[Elevator: 0.150363] [Roll: -0.009879] [Yaw: 0.013651] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.307087] [T/O: false ][Cruise: false ] +[Elevator: 0.045639] [Roll: 0.008587] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.776047] [T/O: false ][Cruise: false ] +[Elevator: 0.062148] [Roll: 0.031572] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.476326] [T/O: false ][Cruise: false ] +[Elevator: 0.055424] [Roll: 0.017908] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.142376] [T/O: false ][Cruise: false ] +[Elevator: 0.061467] [Roll: 0.042314] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.907047] [T/O: false ][Cruise: false ] +[Elevator: 0.295479] [Roll: 0.050980] [Yaw: 0.012674] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.904011] [T/O: false ][Cruise: false ] +[Elevator: 0.097037] [Roll: -0.000606] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.949615] [T/O: false ][Cruise: false ] +[Elevator: 0.060139] [Roll: -0.011326] [Yaw: 0.019169] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.163143] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.302433] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.009870] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.691906] [T/O: false ][Cruise: false ] +[Elevator: 0.080296] [Roll: -0.005979] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.105553] [T/O: false ][Cruise: false ] +[Elevator: 0.077292] [Roll: -0.025676] [Yaw: 0.016826] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.645935] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.258179] [T/O: false ][Cruise: false ] +[Elevator: 0.074454] [Roll: -0.066779] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.960297] [T/O: false ][Cruise: false ] +[Elevator: 0.071013] [Roll: -0.064969] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.696835] [T/O: false ][Cruise: false ] +[Elevator: 0.068954] [Roll: -0.023203] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.507557] [T/O: false ][Cruise: false ] +[Elevator: 0.059565] [Roll: -0.004663] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.386055] [T/O: false ][Cruise: false ] +[Elevator: 0.051552] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.289276] [T/O: false ][Cruise: false ] +[Elevator: 0.055315] [Roll: -0.004316] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.249958] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.012670] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.214565] [T/O: false ][Cruise: false ] +[Elevator: 0.146953] [Roll: -0.020993] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.213703] [T/O: false ][Cruise: false ] +[Elevator: 0.249492] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.212151] [T/O: false ][Cruise: false ] +[Elevator: 0.147101] [Roll: -0.018709] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.201031] [T/O: false ][Cruise: false ] +[Elevator: 0.046637] [Roll: 0.000422] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.189770] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.142742] [T/O: false ][Cruise: false ] +[Elevator: 0.048379] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.089455] [T/O: false ][Cruise: false ] +[Elevator: 0.085670] [Roll: 0.009703] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.013092] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.018075] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.921467] [T/O: false ][Cruise: false ] +[Elevator: 0.128186] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.817247] [T/O: false ][Cruise: false ] +[Elevator: 0.121336] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.687416] [T/O: false ][Cruise: false ] +[Elevator: 0.106304] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.559017] [T/O: false ][Cruise: false ] +[Elevator: 0.141289] [Roll: 0.011765] [Yaw: 0.012082] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.393194] [T/O: false ][Cruise: false ] +[Elevator: 0.048432] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.240568] [T/O: false ][Cruise: false ] +[Elevator: 0.037139] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.034670] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.826876] [T/O: false ][Cruise: false ] +[Elevator: 0.051113] [Roll: 0.007777] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.624680] [T/O: false ][Cruise: false ] +[Elevator: 0.053679] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.407780] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.007672] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.185472] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.054292] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.950603] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.138466] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.724777] [T/O: false ][Cruise: false ] +[Elevator: 0.056708] [Roll: 0.000103] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.497276] [T/O: false ][Cruise: false ] +[Elevator: 0.087700] [Roll: -0.013963] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.249119] [T/O: false ][Cruise: false ] +[Elevator: 0.148665] [Roll: -0.044241] [Yaw: 0.135245] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.965368] [T/O: false ][Cruise: false ] +[Elevator: 0.210872] [Roll: -0.101068] [Yaw: 0.110697] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.656309] [T/O: false ][Cruise: false ] +[Elevator: 0.152550] [Roll: -0.059583] [Yaw: 0.110091] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.319740] [T/O: false ][Cruise: false ] +[Elevator: 0.066627] [Roll: -0.045785] [Yaw: 0.103255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.994232] [T/O: false ][Cruise: false ] +[Elevator: 0.069428] [Roll: -0.015780] [Yaw: 0.091890] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.569988] [T/O: false ][Cruise: false ] +[Elevator: 0.023021] [Roll: -0.061846] [Yaw: 0.083760] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.153952] [T/O: false ][Cruise: false ] +[Elevator: 0.025390] [Roll: -0.047260] [Yaw: 0.075540] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.645655] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.040782] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.157888] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.597095] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.000950] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.000287] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.448940] [T/O: false ][Cruise: false ] +[Elevator: 0.061976] [Roll: -0.101742] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.860165] [T/O: false ][Cruise: false ] +[Elevator: 0.067777] [Roll: -0.177652] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.258915] [T/O: false ][Cruise: false ] +[Elevator: 0.052292] [Roll: -0.085387] [Yaw: -0.011381] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.748274] [T/O: false ][Cruise: false ] +[Elevator: 0.067987] [Roll: -0.008270] [Yaw: -0.285807] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.259113] [T/O: false ][Cruise: false ] +[Elevator: 0.057309] [Roll: -0.019608] [Yaw: -0.385608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.835012] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.028153] [Yaw: -0.461692] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.457167] [T/O: false ][Cruise: false ] +[Elevator: 0.049015] [Roll: -0.035294] [Yaw: -0.239157] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.147709] [T/O: false ][Cruise: false ] +[Elevator: 0.061850] [Roll: -0.035294] [Yaw: -0.075064] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.847372] [T/O: false ][Cruise: false ] +[Elevator: 0.093398] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.597681] [T/O: false ][Cruise: false ] +[Elevator: 0.061118] [Roll: -0.086984] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.377996] [T/O: false ][Cruise: false ] +[Elevator: 0.057834] [Roll: -0.157890] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.200592] [T/O: false ][Cruise: false ] +[Elevator: 0.076858] [Roll: 0.001254] [Yaw: -0.077177] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.036543] [T/O: false ][Cruise: false ] +[Elevator: 0.061679] [Roll: -0.014621] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.911928] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.046902] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.800800] [T/O: false ][Cruise: false ] +[Elevator: 0.061259] [Roll: -0.012446] [Yaw: -0.088978] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.716850] [T/O: false ][Cruise: false ] +[Elevator: 0.216350] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.641808] [T/O: false ][Cruise: false ] +[Elevator: 0.025818] [Roll: -0.003922] [Yaw: -0.088239] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.590006] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.048970] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.539019] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.000538] [Yaw: -0.039754] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.498211] [T/O: false ][Cruise: false ] +[Elevator: 0.046037] [Roll: -0.001364] [Yaw: -0.051152] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466799] [T/O: false ][Cruise: false ] +[Elevator: 0.521495] [Roll: -0.274915] [Yaw: -0.072043] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.441216] [T/O: false ][Cruise: false ] +[Elevator: 0.525390] [Roll: -0.407943] [Yaw: -0.089501] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.416492] [T/O: false ][Cruise: false ] +[Elevator: 0.392748] [Roll: -0.475531] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.398762] [T/O: false ][Cruise: false ] +[Elevator: 0.028613] [Roll: -0.004988] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.383286] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.154603] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.376467] [T/O: false ][Cruise: false ] +[Elevator: 0.045299] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.385786] [T/O: false ][Cruise: false ] +[Elevator: 0.040030] [Roll: 0.001825] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.402733] [T/O: false ][Cruise: false ] +[Elevator: 0.086714] [Roll: 0.114049] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.434834] [T/O: false ][Cruise: false ] +[Elevator: 0.187466] [Roll: 0.360024] [Yaw: -0.094903] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466036] [T/O: false ][Cruise: false ] +[Elevator: 0.113429] [Roll: 0.178948] [Yaw: -0.112357] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.484629] [T/O: false ][Cruise: false ] +[Elevator: 0.021725] [Roll: 0.003922] [Yaw: -0.133021] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.504593] [T/O: false ][Cruise: false ] +[Elevator: 0.012995] [Roll: 0.003922] [Yaw: -0.084355] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.493233] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.480572] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.473116] [T/O: false ][Cruise: false ] +[Elevator: 0.013272] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467443] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.100367] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.468819] [T/O: false ][Cruise: false ] +[Elevator: 0.083677] [Roll: -0.053741] [Yaw: -0.112289] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.474705] [T/O: false ][Cruise: false ] +[Elevator: 0.105672] [Roll: -0.088581] [Yaw: -0.125994] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.472034] [T/O: false ][Cruise: false ] +[Elevator: 0.045670] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.459524] [T/O: false ][Cruise: false ] +[Elevator: 0.068650] [Roll: -0.070115] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.437420] [T/O: false ][Cruise: false ] +[Elevator: 0.298898] [Roll: -0.175097] [Yaw: -0.137149] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.395798] [T/O: false ][Cruise: false ] +[Elevator: 0.088176] [Roll: -0.153785] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.351658] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.145932] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.304670] [T/O: false ][Cruise: false ] +[Elevator: 0.015641] [Roll: -0.000045] [Yaw: -0.176562] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.262396] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: -0.079091] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.227667] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.003922] [Yaw: -0.000027] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.192413] [T/O: false ][Cruise: false ] +[Elevator: 0.030071] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.159359] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.123960] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.007146] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.089779] [T/O: false ][Cruise: false ] +[Elevator: 0.046091] [Roll: -0.047568] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.056087] [T/O: false ][Cruise: false ] +[Elevator: 0.057341] [Roll: -0.250434] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.029123] [T/O: false ][Cruise: false ] +[Elevator: 0.050237] [Roll: -0.231124] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.003557] [T/O: false ][Cruise: false ] +[Elevator: 0.039885] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.983091] [T/O: false ][Cruise: false ] +[Elevator: 0.040155] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.966944] [T/O: false ][Cruise: false ] +[Elevator: 0.036840] [Roll: 0.002376] [Yaw: 0.016517] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.953314] [T/O: false ][Cruise: false ] +[Elevator: 0.032757] [Roll: 0.003922] [Yaw: 0.133798] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.967789] [T/O: false ][Cruise: false ] +[Elevator: 0.042896] [Roll: -0.003680] [Yaw: 0.004404] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.986431] [T/O: false ][Cruise: false ] +[Elevator: 0.037514] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.008034] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.268342] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.151436] [T/O: false ][Cruise: false ] +[Elevator: 0.015995] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.346012] [T/O: false ][Cruise: false ] +[Elevator: 0.185470] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476656] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.105881] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.487988] [T/O: false ][Cruise: false ] +[Elevator: 0.017074] [Roll: 0.003922] [Yaw: -0.116986] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.402889] [T/O: false ][Cruise: false ] +[Elevator: 0.039331] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.426960] [T/O: false ][Cruise: false ] +[Elevator: 0.512837] [Roll: -0.269844] [Yaw: -0.071795] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.600311] [T/O: false ][Cruise: false ] +[Elevator: 0.202965] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.044870] [T/O: false ][Cruise: false ] +[Elevator: 0.057734] [Roll: -0.158388] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.172949] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.029820] [Yaw: -0.459191] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.423359] [T/O: false ][Cruise: false ] +[Elevator: 0.057007] [Roll: -0.087664] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.226347] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.548941] [T/O: false ][Cruise: false ] +[Elevator: 0.208055] [Roll: -0.098251] [Yaw: 0.113514] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.912155] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.025358] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.001566] [T/O: false ][Cruise: false ] +[Elevator: 0.043171] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.802261] [T/O: false ][Cruise: false ] +[Elevator: 0.102247] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.188175] [T/O: false ][Cruise: false ] +[Elevator: 0.069175] [Roll: -0.006721] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.242073] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.919762] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.234047] [T/O: false ][Cruise: false ] +[Elevator: 0.072445] [Roll: -0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.542187] [T/O: false ][Cruise: false ] +[Elevator: 0.056257] [Roll: 0.018325] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.385319] [T/O: false ][Cruise: false ] +[Elevator: 0.084603] [Roll: 0.189985] [Yaw: 0.026675] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.964279] [T/O: false ][Cruise: false ] +[Elevator: 0.309804] [Roll: -0.001180] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.452343] [T/O: false ][Cruise: false ] +[Elevator: 0.127042] [Roll: -0.166257] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 69.225555] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 76.754646] [T/O: false ][Cruise: false ] +[Elevator: 0.135786] [Roll: 0.146684] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.042404] [T/O: false ][Cruise: false ] +[Elevator: 0.109288] [Roll: -0.029516] [Yaw: 0.007671] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.088493] [T/O: false ][Cruise: false ] +[Elevator: 0.026164] [Roll: -0.081185] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 98.385880] [T/O: false ][Cruise: false ] +[Elevator: 0.100967] [Roll: 0.150953] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 105.919815] [T/O: false ][Cruise: false ] +[Elevator: 0.120906] [Roll: 0.029438] [Yaw: 0.012427] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 112.920464] [T/O: false ][Cruise: false ] +[Elevator: 0.139846] [Roll: -0.030112] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.988869] [T/O: false ][Cruise: false ] +[Elevator: 0.063175] [Roll: -0.076551] [Yaw: 0.052431] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.605453] [T/O: false ][Cruise: false ] +[Elevator: 0.013003] [Roll: 0.008738] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 133.175705] [T/O: false ][Cruise: false ] +[Elevator: 0.218782] [Roll: 0.088266] [Yaw: 0.096262] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.952820] [T/O: false ][Cruise: false ] +[Elevator: 0.069121] [Roll: 0.085770] [Yaw: 0.036258] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.561905] [T/O: false ][Cruise: false ] +[Elevator: 0.038035] [Roll: -0.022159] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.540680] [T/O: false ][Cruise: false ] +[Elevator: 0.303583] [Roll: -0.181014] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.583252] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.330719] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.018447] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.212158] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.981262] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.732620] [T/O: false ][Cruise: false ] +[Elevator: 0.067429] [Roll: -0.003922] [Yaw: -0.022730] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.420135] [T/O: false ][Cruise: false ] +[Elevator: 0.062635] [Roll: -0.003922] [Yaw: -0.019534] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.091095] [T/O: false ][Cruise: false ] +[Elevator: 0.057475] [Roll: -0.003922] [Yaw: -0.016095] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 188.762589] [T/O: false ][Cruise: false ] +[Elevator: 0.052677] [Roll: -0.003922] [Yaw: -0.012896] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 188.431610] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 188.094406] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.780975] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.459198] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 187.131699] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003683] [Yaw: -0.011049] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 186.804718] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.001857] [Yaw: -0.005572] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 186.486664] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.000152] [Yaw: -0.000455] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 186.168884] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.001473] [Yaw: 0.004420] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.820343] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003295] [Yaw: 0.009885] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.465469] [T/O: false ][Cruise: false ] +[Elevator: 0.104057] [Roll: 0.032402] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 185.132416] [T/O: false ][Cruise: false ] +[Elevator: 0.176867] [Roll: 0.071470] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.801682] [T/O: false ][Cruise: false ] +[Elevator: 0.247425] [Roll: 0.109331] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.449799] [T/O: false ][Cruise: false ] +[Elevator: 0.320877] [Roll: 0.148744] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 184.111343] [T/O: false ][Cruise: false ] +[Elevator: 0.391168] [Roll: 0.173885] [Yaw: 0.011248] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 183.788223] [T/O: false ][Cruise: false ] +[Elevator: 0.452026] [Roll: 0.165432] [Yaw: 0.009557] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 183.466736] [T/O: false ][Cruise: false ] +[Elevator: 0.518232] [Roll: 0.156237] [Yaw: 0.007718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 183.134018] [T/O: false ][Cruise: false ] +[Elevator: 0.579207] [Roll: 0.147768] [Yaw: 0.006024] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 182.779297] [T/O: false ][Cruise: false ] +[Elevator: 0.646421] [Roll: 0.138433] [Yaw: 0.004157] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 182.408249] [T/O: false ][Cruise: false ] +[Elevator: 0.523831] [Roll: 0.109746] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 182.066147] [T/O: false ][Cruise: false ] +[Elevator: 0.380087] [Roll: 0.079578] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.727127] [T/O: false ][Cruise: false ] +[Elevator: 0.240025] [Roll: 0.050182] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.363983] [T/O: false ][Cruise: false ] +[Elevator: 0.092135] [Roll: 0.019143] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.008331] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 180.660416] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 180.302979] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.971802] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.614304] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 179.273071] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 178.901367] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 178.536591] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 178.144348] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.787888] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.425461] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 177.057236] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 176.680267] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 176.311249] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.933853] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.577332] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 175.223892] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 174.801910] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005193] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 174.445084] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.009926] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 174.094421] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.014670] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.749008] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.019345] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.388580] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.024155] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 173.008926] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.026925] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 172.662582] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.025289] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 172.284424] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.023660] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.953156] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.022206] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.622040] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.020691] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 171.255203] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.018972] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 170.909271] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.017012] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 170.554459] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.015226] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 170.222763] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.013423] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.893585] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011687] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.570770] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.010149] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 169.217560] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008403] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.888855] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006860] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.566650] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005268] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 168.248566] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.004111] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 167.906860] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005762] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 167.569427] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.007252] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 167.270569] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008791] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.960068] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.010397] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.674408] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011686] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.379425] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.010148] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.098282] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008640] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 165.803574] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.007139] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 165.496368] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005480] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 165.213776] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.004060] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.908249] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.005368] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.583221] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006895] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 164.289810] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008310] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.994095] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.009788] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.713196] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011295] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.434830] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 163.141068] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.854034] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.585800] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 162.305618] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.999893] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.010279] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.716217] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.008401] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.398193] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.006525] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 161.130096] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.004727] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.846558] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.569855] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.328552] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.072617] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.820160] [T/O: false ][Cruise: false ] +[Elevator: 0.019634] [Roll: 0.002937] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.540848] [T/O: false ][Cruise: false ] +[Elevator: 0.023062] [Roll: -0.127318] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.300247] [T/O: false ][Cruise: false ] +[Elevator: 0.026110] [Roll: -0.243169] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 159.028900] [T/O: false ][Cruise: false ] +[Elevator: 0.029454] [Roll: -0.370249] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.775162] [T/O: false ][Cruise: false ] +[Elevator: 0.032713] [Roll: -0.494073] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.507553] [T/O: false ][Cruise: false ] +[Elevator: 0.034968] [Roll: -0.567361] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.263641] [T/O: false ][Cruise: false ] +[Elevator: 0.033281] [Roll: -0.439170] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 158.018295] [T/O: false ][Cruise: false ] +[Elevator: 0.031728] [Roll: -0.321099] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.767334] [T/O: false ][Cruise: false ] +[Elevator: 0.029901] [Roll: -0.182312] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.502808] [T/O: false ][Cruise: false ] +[Elevator: 0.028053] [Roll: -0.041817] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.248581] [T/O: false ][Cruise: false ] +[Elevator: 0.066208] [Roll: -0.022596] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 157.030380] [T/O: false ][Cruise: false ] +[Elevator: 0.123407] [Roll: -0.061733] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.777405] [T/O: false ][Cruise: false ] +[Elevator: 0.185219] [Roll: -0.104025] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.529236] [T/O: false ][Cruise: false ] +[Elevator: 0.246523] [Roll: -0.145970] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.308701] [T/O: false ][Cruise: false ] +[Elevator: 0.303160] [Roll: -0.184722] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 156.055267] [T/O: false ][Cruise: false ] +[Elevator: 0.289658] [Roll: -0.168946] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.804062] [T/O: false ][Cruise: false ] +[Elevator: 0.236924] [Roll: -0.123243] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.569382] [T/O: false ][Cruise: false ] +[Elevator: 0.183848] [Roll: -0.077243] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.325882] [T/O: false ][Cruise: false ] +[Elevator: 0.133024] [Roll: -0.033195] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 155.108643] [T/O: false ][Cruise: false ] +[Elevator: 0.092704] [Roll: 0.002326] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.889435] [T/O: false ][Cruise: false ] +[Elevator: 0.111184] [Roll: -0.009434] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.669922] [T/O: false ][Cruise: false ] +[Elevator: 0.128502] [Roll: -0.020455] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.433380] [T/O: false ][Cruise: false ] +[Elevator: 0.148718] [Roll: -0.033320] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 154.182175] [T/O: false ][Cruise: false ] +[Elevator: 0.169193] [Roll: -0.046349] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.935181] [T/O: false ][Cruise: false ] +[Elevator: 0.158574] [Roll: -0.045717] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.686676] [T/O: false ][Cruise: false ] +[Elevator: 0.132111] [Roll: -0.037933] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.476303] [T/O: false ][Cruise: false ] +[Elevator: 0.106980] [Roll: -0.030542] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.242172] [T/O: false ][Cruise: false ] +[Elevator: 0.082094] [Roll: -0.023223] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.009338] [T/O: false ][Cruise: false ] +[Elevator: 0.055154] [Roll: -0.015299] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 152.747345] [T/O: false ][Cruise: false ] +[Elevator: 0.046010] [Roll: -0.010807] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 152.524673] [T/O: false ][Cruise: false ] +[Elevator: 0.050632] [Roll: -0.009267] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 152.270416] [T/O: false ][Cruise: false ] +[Elevator: 0.055896] [Roll: -0.007512] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 152.026581] [T/O: false ][Cruise: false ] +[Elevator: 0.060597] [Roll: -0.005945] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 151.785172] [T/O: false ][Cruise: false ] +[Elevator: 0.065770] [Roll: -0.004221] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 151.536011] [T/O: false ][Cruise: false ] +[Elevator: 0.067909] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 151.301437] [T/O: false ][Cruise: false ] +[Elevator: 0.069435] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 151.076904] [T/O: false ][Cruise: false ] +[Elevator: 0.071016] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.813995] [T/O: false ][Cruise: false ] +[Elevator: 0.072692] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.556778] [T/O: false ][Cruise: false ] +[Elevator: 0.074385] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.328018] [T/O: false ][Cruise: false ] +[Elevator: 0.065877] [Roll: -0.008238] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 150.060959] [T/O: false ][Cruise: false ] +[Elevator: 0.054688] [Roll: -0.013833] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.803116] [T/O: false ][Cruise: false ] +[Elevator: 0.044973] [Roll: -0.018690] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.537460] [T/O: false ][Cruise: false ] +[Elevator: 0.034010] [Roll: -0.024172] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.272430] [T/O: false ][Cruise: false ] +[Elevator: 0.029540] [Roll: -0.024839] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 149.010315] [T/O: false ][Cruise: false ] +[Elevator: 0.036263] [Roll: -0.016436] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 148.759430] [T/O: false ][Cruise: false ] +[Elevator: 0.042140] [Roll: -0.009089] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 148.481964] [T/O: false ][Cruise: false ] +[Elevator: 0.048991] [Roll: -0.000526] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 148.228973] [T/O: false ][Cruise: false ] +[Elevator: 0.054903] [Roll: 0.006863] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.961731] [T/O: false ][Cruise: false ] +[Elevator: 0.060737] [Roll: 0.011127] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.715195] [T/O: false ][Cruise: false ] +[Elevator: 0.065436] [Roll: 0.009561] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.469986] [T/O: false ][Cruise: false ] +[Elevator: 0.070391] [Roll: 0.007909] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.181183] [T/O: false ][Cruise: false ] +[Elevator: 0.075617] [Roll: 0.006167] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 146.922531] [T/O: false ][Cruise: false ] +[Elevator: 0.080157] [Roll: 0.004654] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 146.668777] [T/O: false ][Cruise: false ] +[Elevator: 0.081545] [Roll: 0.018471] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 146.394867] [T/O: false ][Cruise: false ] +[Elevator: 0.079774] [Roll: 0.050348] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 146.097733] [T/O: false ][Cruise: false ] +[Elevator: 0.077991] [Roll: 0.082434] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.847183] [T/O: false ][Cruise: false ] +[Elevator: 0.076351] [Roll: 0.111952] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.549759] [T/O: false ][Cruise: false ] +[Elevator: 0.074575] [Roll: 0.143927] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.300400] [T/O: false ][Cruise: false ] +[Elevator: 0.076142] [Roll: 0.140202] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 145.006516] [T/O: false ][Cruise: false ] +[Elevator: 0.078055] [Roll: 0.134462] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 144.745438] [T/O: false ][Cruise: false ] +[Elevator: 0.079683] [Roll: 0.129579] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 144.458664] [T/O: false ][Cruise: false ] +[Elevator: 0.081598] [Roll: 0.123834] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 144.193619] [T/O: false ][Cruise: false ] +[Elevator: 0.081537] [Roll: 0.115040] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 143.907562] [T/O: false ][Cruise: false ] +[Elevator: 0.079758] [Roll: 0.100805] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 143.612579] [T/O: false ][Cruise: false ] +[Elevator: 0.077993] [Roll: 0.086693] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 143.322876] [T/O: false ][Cruise: false ] +[Elevator: 0.076260] [Roll: 0.072826] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 143.028824] [T/O: false ][Cruise: false ] +[Elevator: 0.074559] [Roll: 0.059217] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 142.783066] [T/O: false ][Cruise: false ] +[Elevator: 0.072936] [Roll: 0.066692] [Yaw: 0.013364] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 142.514404] [T/O: false ][Cruise: false ] +[Elevator: 0.071290] [Roll: 0.074925] [Yaw: 0.023243] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 142.240265] [T/O: false ][Cruise: false ] +[Elevator: 0.069471] [Roll: 0.084019] [Yaw: 0.034156] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.983719] [T/O: false ][Cruise: false ] +[Elevator: 0.067871] [Roll: 0.092016] [Yaw: 0.043752] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.703949] [T/O: false ][Cruise: false ] +[Elevator: 0.067217] [Roll: 0.091990] [Yaw: 0.053730] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.441467] [T/O: false ][Cruise: false ] +[Elevator: 0.068920] [Roll: 0.073252] [Yaw: 0.062248] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.188110] [T/O: false ][Cruise: false ] +[Elevator: 0.070644] [Roll: 0.054291] [Yaw: 0.070866] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 140.893082] [T/O: false ][Cruise: false ] +[Elevator: 0.072582] [Roll: 0.032969] [Yaw: 0.080558] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 140.589691] [T/O: false ][Cruise: false ] +[Elevator: 0.074169] [Roll: 0.011716] [Yaw: 0.090391] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 140.295380] [T/O: false ][Cruise: false ] +[Elevator: 0.062569] [Roll: 0.010059] [Yaw: 0.097020] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 140.040512] [T/O: false ][Cruise: false ] +[Elevator: 0.052979] [Roll: 0.008689] [Yaw: 0.102499] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.770050] [T/O: false ][Cruise: false ] +[Elevator: 0.041650] [Roll: 0.007070] [Yaw: 0.108973] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.479691] [T/O: false ][Cruise: false ] +[Elevator: 0.030223] [Roll: 0.005438] [Yaw: 0.115503] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 139.185776] [T/O: false ][Cruise: false ] +[Elevator: 0.020190] [Roll: 0.004358] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.898666] [T/O: false ][Cruise: false ] +[Elevator: 0.026336] [Roll: 0.008968] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.646179] [T/O: false ][Cruise: false ] +[Elevator: 0.031555] [Roll: 0.012882] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.364899] [T/O: false ][Cruise: false ] +[Elevator: 0.037570] [Roll: 0.017394] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 138.116501] [T/O: false ][Cruise: false ] +[Elevator: 0.043274] [Roll: 0.021671] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 137.826843] [T/O: false ][Cruise: false ] +[Elevator: 0.049436] [Roll: 0.026292] [Yaw: 0.121569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 137.570984] [T/O: false ][Cruise: false ] +[Elevator: 0.071108] [Roll: 0.031003] [Yaw: 0.120385] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 137.295654] [T/O: false ][Cruise: false ] +[Elevator: 0.099014] [Roll: 0.035928] [Yaw: 0.118743] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 137.041351] [T/O: false ][Cruise: false ] +[Elevator: 0.127165] [Roll: 0.040895] [Yaw: 0.117087] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 136.758270] [T/O: false ][Cruise: false ] +[Elevator: 0.156628] [Roll: 0.046095] [Yaw: 0.115354] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 136.490021] [T/O: false ][Cruise: false ] +[Elevator: 0.184622] [Roll: 0.051245] [Yaw: 0.113637] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 136.223206] [T/O: false ][Cruise: false ] +[Elevator: 0.196540] [Roll: 0.061460] [Yaw: 0.110232] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.966461] [T/O: false ][Cruise: false ] +[Elevator: 0.208345] [Roll: 0.071578] [Yaw: 0.106860] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.681580] [T/O: false ][Cruise: false ] +[Elevator: 0.221007] [Roll: 0.082432] [Yaw: 0.103242] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.423859] [T/O: false ][Cruise: false ] +[Elevator: 0.233415] [Roll: 0.093067] [Yaw: 0.099697] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.163605] [T/O: false ][Cruise: false ] +[Elevator: 0.220136] [Roll: 0.088914] [Yaw: 0.096380] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.887970] [T/O: false ][Cruise: false ] +[Elevator: 0.176846] [Roll: 0.068210] [Yaw: 0.092616] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.619568] [T/O: false ][Cruise: false ] +[Elevator: 0.136974] [Roll: 0.049141] [Yaw: 0.089149] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.352753] [T/O: false ][Cruise: false ] +[Elevator: 0.093595] [Roll: 0.028395] [Yaw: 0.085377] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 134.060333] [T/O: false ][Cruise: false ] +[Elevator: 0.064492] [Roll: 0.013654] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 133.785492] [T/O: false ][Cruise: false ] +[Elevator: 0.088210] [Roll: 0.021560] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 133.525681] [T/O: false ][Cruise: false ] +[Elevator: 0.111557] [Roll: 0.029343] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 133.252213] [T/O: false ][Cruise: false ] +[Elevator: 0.136104] [Roll: 0.037525] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.974762] [T/O: false ][Cruise: false ] +[Elevator: 0.160692] [Roll: 0.045721] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.697113] [T/O: false ][Cruise: false ] +[Elevator: 0.168046] [Roll: 0.047092] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.442032] [T/O: false ][Cruise: false ] +[Elevator: 0.148209] [Roll: 0.037937] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 132.186417] [T/O: false ][Cruise: false ] +[Elevator: 0.127611] [Roll: 0.028430] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.928421] [T/O: false ][Cruise: false ] +[Elevator: 0.105564] [Roll: 0.018254] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.653275] [T/O: false ][Cruise: false ] +[Elevator: 0.083492] [Roll: 0.008067] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.377701] [T/O: false ][Cruise: false ] +[Elevator: 0.075517] [Roll: 0.030114] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 131.103317] [T/O: false ][Cruise: false ] +[Elevator: 0.077174] [Roll: 0.073183] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.836914] [T/O: false ][Cruise: false ] +[Elevator: 0.078771] [Roll: 0.114709] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.571289] [T/O: false ][Cruise: false ] +[Elevator: 0.080399] [Roll: 0.157027] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.290634] [T/O: false ][Cruise: false ] +[Elevator: 0.082075] [Roll: 0.200621] [Yaw: 0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 130.047882] [T/O: false ][Cruise: false ] +[Elevator: 0.069999] [Roll: 0.176959] [Yaw: 0.081118] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 129.766541] [T/O: false ][Cruise: false ] +[Elevator: 0.052930] [Roll: 0.134285] [Yaw: 0.079411] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 129.488647] [T/O: false ][Cruise: false ] +[Elevator: 0.036056] [Roll: 0.092102] [Yaw: 0.077723] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 129.219406] [T/O: false ][Cruise: false ] +[Elevator: 0.019803] [Roll: 0.051468] [Yaw: 0.076098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.952286] [T/O: false ][Cruise: false ] +[Elevator: 0.003963] [Roll: 0.011751] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.688385] [T/O: false ][Cruise: false ] +[Elevator: 0.008874] [Roll: 0.010114] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.421707] [T/O: false ][Cruise: false ] +[Elevator: 0.013834] [Roll: 0.008461] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 128.151337] [T/O: false ][Cruise: false ] +[Elevator: 0.018893] [Roll: 0.006774] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.885727] [T/O: false ][Cruise: false ] +[Elevator: 0.023807] [Roll: 0.005136] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.613564] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.004487] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.358490] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.006117] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 127.103241] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.007932] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.829559] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.009805] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.565987] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.011608] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.292221] [T/O: false ][Cruise: false ] +[Elevator: 0.038582] [Roll: 0.016535] [Yaw: 0.072920] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 126.025787] [T/O: false ][Cruise: false ] +[Elevator: 0.050342] [Roll: 0.021575] [Yaw: 0.071240] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 125.763214] [T/O: false ][Cruise: false ] +[Elevator: 0.061255] [Roll: 0.026252] [Yaw: 0.069681] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 125.541718] [T/O: false ][Cruise: false ] +[Elevator: 0.071658] [Roll: 0.030711] [Yaw: 0.068195] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 125.305214] [T/O: false ][Cruise: false ] +[Elevator: 0.081937] [Roll: 0.035116] [Yaw: 0.066726] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 125.040688] [T/O: false ][Cruise: false ] +[Elevator: 0.073710] [Roll: 0.023193] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.792213] [T/O: false ][Cruise: false ] +[Elevator: 0.065625] [Roll: 0.011876] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.542892] [T/O: false ][Cruise: false ] +[Elevator: 0.057649] [Roll: 0.000709] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.302673] [T/O: false ][Cruise: false ] +[Elevator: 0.049706] [Roll: -0.010412] [Yaw: 0.066667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.049561] [T/O: false ][Cruise: false ] +[Elevator: 0.045040] [Roll: -0.021130] [Yaw: 0.066286] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.782211] [T/O: false ][Cruise: false ] +[Elevator: 0.052855] [Roll: -0.027382] [Yaw: 0.064723] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.542618] [T/O: false ][Cruise: false ] +[Elevator: 0.060136] [Roll: -0.033207] [Yaw: 0.063267] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.309273] [T/O: false ][Cruise: false ] +[Elevator: 0.067612] [Roll: -0.039188] [Yaw: 0.061772] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 123.057655] [T/O: false ][Cruise: false ] +[Elevator: 0.074959] [Roll: -0.045065] [Yaw: 0.060302] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.815575] [T/O: false ][Cruise: false ] +[Elevator: 0.082081] [Roll: -0.051343] [Yaw: 0.058733] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.567169] [T/O: false ][Cruise: false ] +[Elevator: 0.077650] [Roll: -0.057251] [Yaw: 0.057256] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.315079] [T/O: false ][Cruise: false ] +[Elevator: 0.072773] [Roll: -0.063754] [Yaw: 0.055630] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 122.079819] [T/O: false ][Cruise: false ] +[Elevator: 0.068511] [Roll: -0.069436] [Yaw: 0.054210] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.818192] [T/O: false ][Cruise: false ] +[Elevator: 0.063678] [Roll: -0.075881] [Yaw: 0.052599] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.591644] [T/O: false ][Cruise: false ] +[Elevator: 0.059434] [Roll: -0.081539] [Yaw: 0.051184] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.358421] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.090531] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 121.121399] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.100396] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.874100] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.111202] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.627190] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.121226] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.384117] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.129793] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.129486] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.131380] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.874771] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.132971] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.620071] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.134550] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.368904] [T/O: false ][Cruise: false ] +[Elevator: 0.058824] [Roll: -0.136142] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 119.115158] [T/O: false ][Cruise: false ] +[Elevator: 0.059818] [Roll: -0.136758] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.861359] [T/O: false ][Cruise: false ] +[Elevator: 0.063150] [Roll: -0.135092] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.598831] [T/O: false ][Cruise: false ] +[Elevator: 0.066678] [Roll: -0.133328] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.332497] [T/O: false ][Cruise: false ] +[Elevator: 0.069958] [Roll: -0.131688] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 118.100098] [T/O: false ][Cruise: false ] +[Elevator: 0.073174] [Roll: -0.130080] [Yaw: 0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.838181] [T/O: false ][Cruise: false ] +[Elevator: 0.075713] [Roll: -0.123397] [Yaw: 0.052183] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.583908] [T/O: false ][Cruise: false ] +[Elevator: 0.077464] [Roll: -0.114641] [Yaw: 0.053935] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.326881] [T/O: false ][Cruise: false ] +[Elevator: 0.079399] [Roll: -0.104967] [Yaw: 0.055869] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 117.078720] [T/O: false ][Cruise: false ] +[Elevator: 0.081092] [Roll: -0.096501] [Yaw: 0.057563] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.832275] [T/O: false ][Cruise: false ] +[Elevator: 0.085205] [Roll: -0.087820] [Yaw: 0.055021] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.599281] [T/O: false ][Cruise: false ] +[Elevator: 0.093690] [Roll: -0.080749] [Yaw: 0.043708] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.360657] [T/O: false ][Cruise: false ] +[Elevator: 0.102445] [Roll: -0.073453] [Yaw: 0.032035] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 116.115456] [T/O: false ][Cruise: false ] +[Elevator: 0.121893] [Roll: -0.057246] [Yaw: 0.006103] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 114.970078] [T/O: false ][Cruise: false ] +[Elevator: 0.148685] [Roll: -0.012433] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 113.667648] [T/O: false ][Cruise: false ] +[Elevator: 0.159677] [Roll: -0.003922] [Yaw: 0.002814] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 112.455162] [T/O: false ][Cruise: false ] +[Elevator: 0.142576] [Roll: 0.014287] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 111.143845] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: 0.025980] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 109.929153] [T/O: false ][Cruise: false ] +[Elevator: 0.119445] [Roll: 0.039324] [Yaw: 0.009858] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 108.663330] [T/O: false ][Cruise: false ] +[Elevator: 0.119705] [Roll: 0.031178] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 107.380913] [T/O: false ][Cruise: false ] +[Elevator: 0.115120] [Roll: 0.046797] [Yaw: 0.018213] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 105.974457] [T/O: false ][Cruise: false ] +[Elevator: 0.120466] [Roll: 0.138611] [Yaw: 0.026349] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 104.505524] [T/O: false ][Cruise: false ] +[Elevator: 0.114544] [Roll: 0.159966] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 102.991508] [T/O: false ][Cruise: false ] +[Elevator: 0.121365] [Roll: 0.160784] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 101.640495] [T/O: false ][Cruise: false ] +[Elevator: 0.105612] [Roll: 0.160244] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 100.208656] [T/O: false ][Cruise: false ] +[Elevator: 0.097288] [Roll: 0.142844] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 98.787971] [T/O: false ][Cruise: false ] +[Elevator: 0.052725] [Roll: 0.009156] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 97.419159] [T/O: false ][Cruise: false ] +[Elevator: 0.065999] [Roll: 0.003922] [Yaw: 0.019942] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 96.061493] [T/O: false ][Cruise: false ] +[Elevator: 0.037238] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 94.692642] [T/O: false ][Cruise: false ] +[Elevator: 0.021369] [Roll: -0.030892] [Yaw: 0.026571] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 93.212723] [T/O: false ][Cruise: false ] +[Elevator: 0.026955] [Roll: -0.086721] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 91.862831] [T/O: false ][Cruise: false ] +[Elevator: 0.058677] [Roll: -0.183874] [Yaw: 0.066484] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 90.591438] [T/O: false ][Cruise: false ] +[Elevator: 0.074147] [Roll: -0.222622] [Yaw: 0.059005] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 89.296570] [T/O: false ][Cruise: false ] +[Elevator: 0.066862] [Roll: -0.208234] [Yaw: 0.012936] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 88.072914] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.139646] [Yaw: 0.004187] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 86.761139] [T/O: false ][Cruise: false ] +[Elevator: 0.098683] [Roll: -0.071934] [Yaw: 0.004136] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 85.591507] [T/O: false ][Cruise: false ] +[Elevator: 0.122920] [Roll: 0.021409] [Yaw: 0.012215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.453720] [T/O: false ][Cruise: false ] +[Elevator: 0.147548] [Roll: 0.056860] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 83.311386] [T/O: false ][Cruise: false ] +[Elevator: 0.184243] [Roll: 0.145028] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 82.150093] [T/O: false ][Cruise: false ] +[Elevator: 0.176471] [Roll: 0.140834] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 80.925537] [T/O: false ][Cruise: false ] +[Elevator: 0.176216] [Roll: 0.222509] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 79.595383] [T/O: false ][Cruise: false ] +[Elevator: 0.160207] [Roll: 0.180497] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 78.214745] [T/O: false ][Cruise: false ] +[Elevator: 0.071129] [Roll: 0.062135] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 76.962608] [T/O: false ][Cruise: false ] +[Elevator: 0.097402] [Roll: 0.119850] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 75.520355] [T/O: false ][Cruise: false ] +[Elevator: 0.082625] [Roll: 0.010251] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 74.285980] [T/O: false ][Cruise: false ] +[Elevator: 0.054031] [Roll: 0.002905] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 72.983170] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 71.671906] [T/O: false ][Cruise: false ] +[Elevator: 0.074107] [Roll: -0.004526] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.314194] [T/O: false ][Cruise: false ] +[Elevator: 0.059457] [Roll: -0.026502] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.997047] [T/O: false ][Cruise: false ] +[Elevator: 0.065802] [Roll: -0.076297] [Yaw: 0.026586] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.696960] [T/O: false ][Cruise: false ] +[Elevator: 0.079609] [Roll: -0.095296] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 66.358215] [T/O: false ][Cruise: false ] +[Elevator: 0.094465] [Roll: -0.128320] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.000832] [T/O: false ][Cruise: false ] +[Elevator: 0.122023] [Roll: -0.161238] [Yaw: 0.021455] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.643650] [T/O: false ][Cruise: false ] +[Elevator: 0.123893] [Roll: -0.163108] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.360630] [T/O: false ][Cruise: false ] +[Elevator: 0.137638] [Roll: -0.150071] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.031921] [T/O: false ][Cruise: false ] +[Elevator: 0.117616] [Roll: -0.103875] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.692219] [T/O: false ][Cruise: false ] +[Elevator: 0.174035] [Roll: -0.062510] [Yaw: 0.015608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.257545] [T/O: false ][Cruise: false ] +[Elevator: 0.279943] [Roll: -0.030428] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.781563] [T/O: false ][Cruise: false ] +[Elevator: 0.309804] [Roll: -0.002934] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.274788] [T/O: false ][Cruise: false ] +[Elevator: 0.314678] [Roll: 0.033168] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.735802] [T/O: false ][Cruise: false ] +[Elevator: 0.255942] [Roll: 0.138396] [Yaw: 0.016907] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.197361] [T/O: false ][Cruise: false ] +[Elevator: 0.110682] [Roll: 0.168193] [Yaw: 0.024982] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.641712] [T/O: false ][Cruise: false ] +[Elevator: 0.035020] [Roll: 0.047717] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.022327] [T/O: false ][Cruise: false ] +[Elevator: 0.070527] [Roll: 0.191247] [Yaw: 0.027451] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.492744] [T/O: false ][Cruise: false ] +[Elevator: 0.171730] [Roll: 0.035838] [Yaw: 0.019973] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.990650] [T/O: false ][Cruise: false ] +[Elevator: 0.177360] [Roll: -0.011378] [Yaw: 0.012151] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.557919] [T/O: false ][Cruise: false ] +[Elevator: 0.043443] [Roll: -0.002394] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.312759] [T/O: false ][Cruise: false ] +[Elevator: 0.052837] [Roll: 0.034675] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.924114] [T/O: false ][Cruise: false ] +[Elevator: 0.068457] [Roll: 0.024424] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.745274] [T/O: false ][Cruise: false ] +[Elevator: 0.047978] [Roll: 0.019833] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.571758] [T/O: false ][Cruise: false ] +[Elevator: 0.123766] [Roll: 0.050980] [Yaw: 0.017878] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.615929] [T/O: false ][Cruise: false ] +[Elevator: 0.282424] [Roll: 0.041256] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.690910] [T/O: false ][Cruise: false ] +[Elevator: 0.079891] [Roll: -0.004742] [Yaw: 0.012585] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.873566] [T/O: false ][Cruise: false ] +[Elevator: 0.059119] [Roll: -0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.151020] [T/O: false ][Cruise: false ] +[Elevator: 0.082075] [Roll: -0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.421658] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.864574] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.004208] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.335896] [T/O: false ][Cruise: false ] +[Elevator: 0.075427] [Roll: -0.010847] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.877594] [T/O: false ][Cruise: false ] +[Elevator: 0.081423] [Roll: -0.046330] [Yaw: 0.012695] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.507652] [T/O: false ][Cruise: false ] +[Elevator: 0.082353] [Roll: -0.050980] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.144398] [T/O: false ][Cruise: false ] +[Elevator: 0.070595] [Roll: -0.074497] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.937248] [T/O: false ][Cruise: false ] +[Elevator: 0.071600] [Roll: -0.062619] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.720409] [T/O: false ][Cruise: false ] +[Elevator: 0.070345] [Roll: -0.030156] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.545994] [T/O: false ][Cruise: false ] +[Elevator: 0.062856] [Roll: -0.007954] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.437489] [T/O: false ][Cruise: false ] +[Elevator: 0.055099] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.315582] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.271378] [T/O: false ][Cruise: false ] +[Elevator: 0.092571] [Roll: -0.007703] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.236050] [T/O: false ][Cruise: false ] +[Elevator: 0.137255] [Roll: -0.014621] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.214352] [T/O: false ][Cruise: false ] +[Elevator: 0.175524] [Roll: -0.025075] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.213646] [T/O: false ][Cruise: false ] +[Elevator: 0.249473] [Roll: -0.035294] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.212940] [T/O: false ][Cruise: false ] +[Elevator: 0.203373] [Roll: -0.027367] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.204411] [T/O: false ][Cruise: false ] +[Elevator: 0.049324] [Roll: -0.002265] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.194347] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.186619] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.177513] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.168823] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.159348] [T/O: false ][Cruise: false ] +[Elevator: 0.043459] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.150482] [T/O: false ][Cruise: false ] +[Elevator: 0.045078] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.141251] [T/O: false ][Cruise: false ] +[Elevator: 0.046631] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.132511] [T/O: false ][Cruise: false ] +[Elevator: 0.048178] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.123619] [T/O: false ][Cruise: false ] +[Elevator: 0.049711] [Roll: 0.003922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.114502] [T/O: false ][Cruise: false ] +[Elevator: 0.052824] [Roll: 0.004229] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.105442] [T/O: false ][Cruise: false ] +[Elevator: 0.060968] [Roll: 0.005586] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.096046] [T/O: false ][Cruise: false ] +[Elevator: 0.069403] [Roll: 0.006992] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.087151] [T/O: false ][Cruise: false ] +[Elevator: 0.077643] [Roll: 0.008365] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.078308] [T/O: false ][Cruise: false ] +[Elevator: 0.085584] [Roll: 0.009689] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.068687] [T/O: false ][Cruise: false ] +[Elevator: 0.094457] [Roll: 0.011168] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.051182] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.012618] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.035999] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.014017] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.019562] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.015489] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.003384] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.016897] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.988180] [T/O: false ][Cruise: false ] +[Elevator: 0.098039] [Roll: 0.018332] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.970642] [T/O: false ][Cruise: false ] +[Elevator: 0.099089] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.954954] [T/O: false ][Cruise: false ] +[Elevator: 0.105261] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.938723] [T/O: false ][Cruise: false ] +[Elevator: 0.111483] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.923098] [T/O: false ][Cruise: false ] +[Elevator: 0.117908] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.906385] [T/O: false ][Cruise: false ] +[Elevator: 0.124349] [Roll: 0.019608] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.889399] [T/O: false ][Cruise: false ] +[Elevator: 0.129092] [Roll: 0.019288] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.873384] [T/O: false ][Cruise: false ] +[Elevator: 0.127614] [Roll: 0.017811] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.854952] [T/O: false ][Cruise: false ] +[Elevator: 0.126122] [Roll: 0.016318] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.834030] [T/O: false ][Cruise: false ] +[Elevator: 0.124706] [Roll: 0.014902] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.811275] [T/O: false ][Cruise: false ] +[Elevator: 0.123250] [Roll: 0.013446] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.789419] [T/O: false ][Cruise: false ] +[Elevator: 0.121726] [Roll: 0.011922] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.766657] [T/O: false ][Cruise: false ] +[Elevator: 0.119199] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.745195] [T/O: false ][Cruise: false ] +[Elevator: 0.116531] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.722233] [T/O: false ][Cruise: false ] +[Elevator: 0.113851] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.701210] [T/O: false ][Cruise: false ] +[Elevator: 0.111209] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.678474] [T/O: false ][Cruise: false ] +[Elevator: 0.108334] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.655413] [T/O: false ][Cruise: false ] +[Elevator: 0.106582] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.633881] [T/O: false ][Cruise: false ] +[Elevator: 0.113971] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.611603] [T/O: false ][Cruise: false ] +[Elevator: 0.121214] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.588675] [T/O: false ][Cruise: false ] +[Elevator: 0.128571] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.564541] [T/O: false ][Cruise: false ] +[Elevator: 0.135726] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.536301] [T/O: false ][Cruise: false ] +[Elevator: 0.142868] [Roll: 0.011765] [Yaw: 0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.508043] [T/O: false ][Cruise: false ] +[Elevator: 0.132076] [Roll: 0.011765] [Yaw: 0.012850] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.480944] [T/O: false ][Cruise: false ] +[Elevator: 0.114266] [Roll: 0.011765] [Yaw: 0.014334] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.453104] [T/O: false ][Cruise: false ] +[Elevator: 0.095947] [Roll: 0.011765] [Yaw: 0.015861] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.425766] [T/O: false ][Cruise: false ] +[Elevator: 0.078066] [Roll: 0.011765] [Yaw: 0.017351] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.395744] [T/O: false ][Cruise: false ] +[Elevator: 0.058397] [Roll: 0.011765] [Yaw: 0.018990] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.367043] [T/O: false ][Cruise: false ] +[Elevator: 0.049225] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.340271] [T/O: false ][Cruise: false ] +[Elevator: 0.046480] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.312021] [T/O: false ][Cruise: false ] +[Elevator: 0.043474] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.283710] [T/O: false ][Cruise: false ] +[Elevator: 0.040647] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.256296] [T/O: false ][Cruise: false ] +[Elevator: 0.037733] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.228945] [T/O: false ][Cruise: false ] +[Elevator: 0.035470] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.197285] [T/O: false ][Cruise: false ] +[Elevator: 0.036988] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.164421] [T/O: false ][Cruise: false ] +[Elevator: 0.038579] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.130945] [T/O: false ][Cruise: false ] +[Elevator: 0.040203] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.097616] [T/O: false ][Cruise: false ] +[Elevator: 0.041719] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.066172] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.032064] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.000717] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.968050] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.934326] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.901236] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.011765] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.870869] [T/O: false ][Cruise: false ] +[Elevator: 0.043928] [Roll: 0.011369] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.838043] [T/O: false ][Cruise: false ] +[Elevator: 0.046661] [Roll: 0.010003] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.804934] [T/O: false ][Cruise: false ] +[Elevator: 0.049420] [Roll: 0.008623] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.769785] [T/O: false ][Cruise: false ] +[Elevator: 0.052238] [Roll: 0.007214] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.733727] [T/O: false ][Cruise: false ] +[Elevator: 0.054824] [Roll: 0.005921] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.700199] [T/O: false ][Cruise: false ] +[Elevator: 0.057471] [Roll: 0.004598] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.664116] [T/O: false ][Cruise: false ] +[Elevator: 0.057913] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.626490] [T/O: false ][Cruise: false ] +[Elevator: 0.056308] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.591019] [T/O: false ][Cruise: false ] +[Elevator: 0.054747] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.555037] [T/O: false ][Cruise: false ] +[Elevator: 0.053137] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.519411] [T/O: false ][Cruise: false ] +[Elevator: 0.051569] [Roll: 0.003922] [Yaw: 0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.483294] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.017722] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.448204] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.014797] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.410856] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.011927] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.375437] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.008904] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.337648] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.005963] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.300161] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.007037] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.261974] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.018393] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.222837] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.029312] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.183344] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.040655] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.145798] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.051247] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.109715] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.063478] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.069098] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.079049] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.031240] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.095281] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.990311] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.111063] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.952883] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.126543] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.914444] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.137808] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.872852] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.139384] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.831350] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.140835] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.790306] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.142334] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.748457] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: 0.003922] [Yaw: 0.143814] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.709461] [T/O: false ][Cruise: false ] +[Elevator: 0.051487] [Roll: 0.003584] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.669037] [T/O: false ][Cruise: false ] +[Elevator: 0.056022] [Roll: 0.000560] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.626394] [T/O: false ][Cruise: false ] +[Elevator: 0.060761] [Roll: -0.002599] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.587303] [T/O: false ][Cruise: false ] +[Elevator: 0.065340] [Roll: -0.005651] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.544510] [T/O: false ][Cruise: false ] +[Elevator: 0.069975] [Roll: -0.008742] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.503317] [T/O: false ][Cruise: false ] +[Elevator: 0.074990] [Roll: -0.011845] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.463964] [T/O: false ][Cruise: false ] +[Elevator: 0.082909] [Roll: -0.013165] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.422974] [T/O: false ][Cruise: false ] +[Elevator: 0.091277] [Roll: -0.014559] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.382111] [T/O: false ][Cruise: false ] +[Elevator: 0.099526] [Roll: -0.015934] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.339319] [T/O: false ][Cruise: false ] +[Elevator: 0.107752] [Roll: -0.017305] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.292885] [T/O: false ][Cruise: false ] +[Elevator: 0.116189] [Roll: -0.018711] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.243990] [T/O: false ][Cruise: false ] +[Elevator: 0.127190] [Roll: -0.024718] [Yaw: 0.143054] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.197598] [T/O: false ][Cruise: false ] +[Elevator: 0.142545] [Roll: -0.038677] [Yaw: 0.137470] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.153055] [T/O: false ][Cruise: false ] +[Elevator: 0.157663] [Roll: -0.052421] [Yaw: 0.131973] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.105972] [T/O: false ][Cruise: false ] +[Elevator: 0.173262] [Roll: -0.066602] [Yaw: 0.126300] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.059671] [T/O: false ][Cruise: false ] +[Elevator: 0.188243] [Roll: -0.080221] [Yaw: 0.120853] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.010811] [T/O: false ][Cruise: false ] +[Elevator: 0.203907] [Roll: -0.094461] [Yaw: 0.115157] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.966175] [T/O: false ][Cruise: false ] +[Elevator: 0.208883] [Roll: -0.099079] [Yaw: 0.112686] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.920910] [T/O: false ][Cruise: false ] +[Elevator: 0.210280] [Roll: -0.100476] [Yaw: 0.111289] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.874912] [T/O: false ][Cruise: false ] +[Elevator: 0.211744] [Roll: -0.101940] [Yaw: 0.109825] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.828751] [T/O: false ][Cruise: false ] +[Elevator: 0.213182] [Roll: -0.103378] [Yaw: 0.108386] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.781733] [T/O: false ][Cruise: false ] +[Elevator: 0.214586] [Roll: -0.104782] [Yaw: 0.106982] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.735037] [T/O: false ][Cruise: false ] +[Elevator: 0.209534] [Roll: -0.101371] [Yaw: 0.106293] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.677759] [T/O: false ][Cruise: false ] +[Elevator: 0.187737] [Roll: -0.085386] [Yaw: 0.107746] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.616423] [T/O: false ][Cruise: false ] +[Elevator: 0.165096] [Roll: -0.068783] [Yaw: 0.109255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.560303] [T/O: false ][Cruise: false ] +[Elevator: 0.143922] [Roll: -0.053255] [Yaw: 0.110667] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.499430] [T/O: false ][Cruise: false ] +[Elevator: 0.121083] [Roll: -0.036507] [Yaw: 0.112189] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.444090] [T/O: false ][Cruise: false ] +[Elevator: 0.100651] [Roll: -0.021523] [Yaw: 0.113551] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.387611] [T/O: false ][Cruise: false ] +[Elevator: 0.089733] [Roll: -0.026530] [Yaw: 0.110957] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.329836] [T/O: false ][Cruise: false ] +[Elevator: 0.081157] [Roll: -0.033676] [Yaw: 0.108098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.273251] [T/O: false ][Cruise: false ] +[Elevator: 0.071611] [Roll: -0.041631] [Yaw: 0.104916] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.213707] [T/O: false ][Cruise: false ] +[Elevator: 0.062787] [Roll: -0.048985] [Yaw: 0.101975] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.157560] [T/O: false ][Cruise: false ] +[Elevator: 0.053555] [Roll: -0.056678] [Yaw: 0.098897] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.101379] [T/O: false ][Cruise: false ] +[Elevator: 0.053934] [Roll: -0.051933] [Yaw: 0.097055] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.042141] [T/O: false ][Cruise: false ] +[Elevator: 0.058390] [Roll: -0.041535] [Yaw: 0.095569] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.983450] [T/O: false ][Cruise: false ] +[Elevator: 0.062815] [Roll: -0.031211] [Yaw: 0.094095] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.916388] [T/O: false ][Cruise: false ] +[Elevator: 0.066832] [Roll: -0.021836] [Yaw: 0.092755] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.846188] [T/O: false ][Cruise: false ] +[Elevator: 0.071189] [Roll: -0.011670] [Yaw: 0.091303] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.772808] [T/O: false ][Cruise: false ] +[Elevator: 0.071939] [Roll: -0.006814] [Yaw: 0.089875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.704165] [T/O: false ][Cruise: false ] +[Elevator: 0.060908] [Roll: -0.019224] [Yaw: 0.088496] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.634750] [T/O: false ][Cruise: false ] +[Elevator: 0.049964] [Roll: -0.031536] [Yaw: 0.087128] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.564808] [T/O: false ][Cruise: false ] +[Elevator: 0.039148] [Roll: -0.043703] [Yaw: 0.085776] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.494976] [T/O: false ][Cruise: false ] +[Elevator: 0.027324] [Roll: -0.057006] [Yaw: 0.084298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.417833] [T/O: false ][Cruise: false ] +[Elevator: 0.015892] [Roll: -0.069867] [Yaw: 0.082869] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.347786] [T/O: false ][Cruise: false ] +[Elevator: 0.013520] [Roll: -0.071000] [Yaw: 0.081475] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.278681] [T/O: false ][Cruise: false ] +[Elevator: 0.016350] [Roll: -0.065338] [Yaw: 0.080060] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.207275] [T/O: false ][Cruise: false ] +[Elevator: 0.019259] [Roll: -0.059522] [Yaw: 0.078606] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.139488] [T/O: false ][Cruise: false ] +[Elevator: 0.021921] [Roll: -0.054198] [Yaw: 0.077275] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.070639] [T/O: false ][Cruise: false ] +[Elevator: 0.024648] [Roll: -0.048743] [Yaw: 0.075911] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.992012] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.910183] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.827833] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.742931] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.657715] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.580812] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.043137] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.497850] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.038280] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.416462] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.029260] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.334955] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.021058] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.253777] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.012543] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.173223] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.004296] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.095360] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003586] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.013800] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.924906] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.838417] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.748135] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.648937] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.561092] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.473324] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.380625] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.295330] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.203552] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003922] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.115452] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.003568] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 25.025415] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.002064] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.940426] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.000666] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.850548] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.000856] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.760435] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.002346] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.664814] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: -0.003847] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.569935] [T/O: false ][Cruise: false ] +[Elevator: 0.035762] [Roll: -0.027470] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.477743] [T/O: false ][Cruise: false ] +[Elevator: 0.044301] [Roll: -0.051662] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.387470] [T/O: false ][Cruise: false ] +[Elevator: 0.052988] [Roll: -0.076275] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.293879] [T/O: false ][Cruise: false ] +[Elevator: 0.061364] [Roll: -0.100007] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.196918] [T/O: false ][Cruise: false ] +[Elevator: 0.070383] [Roll: -0.125562] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.097967] [T/O: false ][Cruise: false ] +[Elevator: 0.073605] [Roll: -0.142686] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 24.001266] [T/O: false ][Cruise: false ] +[Elevator: 0.072158] [Roll: -0.151365] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.904612] [T/O: false ][Cruise: false ] +[Elevator: 0.070680] [Roll: -0.160234] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.813753] [T/O: false ][Cruise: false ] +[Elevator: 0.069294] [Roll: -0.168550] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.720097] [T/O: false ][Cruise: false ] +[Elevator: 0.067774] [Roll: -0.177672] [Yaw: 0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.625570] [T/O: false ][Cruise: false ] +[Elevator: 0.066150] [Roll: -0.181211] [Yaw: 0.072183] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.534256] [T/O: false ][Cruise: false ] +[Elevator: 0.063355] [Roll: -0.164442] [Yaw: 0.059606] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.452124] [T/O: false ][Cruise: false ] +[Elevator: 0.060514] [Roll: -0.147398] [Yaw: 0.046823] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.368877] [T/O: false ][Cruise: false ] +[Elevator: 0.057600] [Roll: -0.129914] [Yaw: 0.033710] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.280968] [T/O: false ][Cruise: false ] +[Elevator: 0.054573] [Roll: -0.111750] [Yaw: 0.020087] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.197428] [T/O: false ][Cruise: false ] +[Elevator: 0.051854] [Roll: -0.095436] [Yaw: 0.007852] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.110304] [T/O: false ][Cruise: false ] +[Elevator: 0.054198] [Roll: -0.078399] [Yaw: -0.033615] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 23.023504] [T/O: false ][Cruise: false ] +[Elevator: 0.058923] [Roll: -0.061075] [Yaw: -0.088736] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.937597] [T/O: false ][Cruise: false ] +[Elevator: 0.063293] [Roll: -0.045049] [Yaw: -0.139727] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.849743] [T/O: false ][Cruise: false ] +[Elevator: 0.067980] [Roll: -0.027863] [Yaw: -0.194412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.764376] [T/O: false ][Cruise: false ] +[Elevator: 0.072354] [Roll: -0.011828] [Yaw: -0.245433] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.681746] [T/O: false ][Cruise: false ] +[Elevator: 0.072002] [Roll: -0.005593] [Yaw: -0.276440] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.598946] [T/O: false ][Cruise: false ] +[Elevator: 0.067929] [Roll: -0.008309] [Yaw: -0.285943] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.516615] [T/O: false ][Cruise: false ] +[Elevator: 0.063574] [Roll: -0.011212] [Yaw: -0.296106] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.430210] [T/O: false ][Cruise: false ] +[Elevator: 0.059169] [Roll: -0.014149] [Yaw: -0.306383] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.365845] [T/O: false ][Cruise: false ] +[Elevator: 0.054770] [Roll: -0.017082] [Yaw: -0.316649] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.300804] [T/O: false ][Cruise: false ] +[Elevator: 0.051353] [Roll: -0.019608] [Yaw: -0.329032] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.234663] [T/O: false ][Cruise: false ] +[Elevator: 0.054182] [Roll: -0.019608] [Yaw: -0.355909] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.168175] [T/O: false ][Cruise: false ] +[Elevator: 0.057214] [Roll: -0.019608] [Yaw: -0.384713] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.103840] [T/O: false ][Cruise: false ] +[Elevator: 0.059860] [Roll: -0.019608] [Yaw: -0.409844] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 22.037601] [T/O: false ][Cruise: false ] +[Elevator: 0.062769] [Roll: -0.019608] [Yaw: -0.437482] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.970661] [T/O: false ][Cruise: false ] +[Elevator: 0.065589] [Roll: -0.019608] [Yaw: -0.464274] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.909605] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.021269] [Yaw: -0.472018] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.844164] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.023976] [Yaw: -0.467957] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.776037] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.026828] [Yaw: -0.463680] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.705782] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.029662] [Yaw: -0.459429] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.638865] [T/O: false ][Cruise: false ] +[Elevator: 0.066667] [Roll: -0.032653] [Yaw: -0.454942] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.569820] [T/O: false ][Cruise: false ] +[Elevator: 0.066125] [Roll: -0.035294] [Yaw: -0.444481] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.512428] [T/O: false ][Cruise: false ] +[Elevator: 0.061677] [Roll: -0.035294] [Yaw: -0.391104] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.463600] [T/O: false ][Cruise: false ] +[Elevator: 0.057425] [Roll: -0.035294] [Yaw: -0.340083] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.414032] [T/O: false ][Cruise: false ] +[Elevator: 0.052939] [Roll: -0.035294] [Yaw: -0.286243] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.365789] [T/O: false ][Cruise: false ] +[Elevator: 0.048665] [Roll: -0.035294] [Yaw: -0.234963] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.315945] [T/O: false ][Cruise: false ] +[Elevator: 0.044235] [Roll: -0.035294] [Yaw: -0.181794] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.261950] [T/O: false ][Cruise: false ] +[Elevator: 0.046644] [Roll: -0.035294] [Yaw: -0.151094] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.204567] [T/O: false ][Cruise: false ] +[Elevator: 0.051095] [Roll: -0.035294] [Yaw: -0.128842] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.153393] [T/O: false ][Cruise: false ] +[Elevator: 0.055206] [Roll: -0.035294] [Yaw: -0.108283] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.100271] [T/O: false ][Cruise: false ] +[Elevator: 0.059473] [Roll: -0.035294] [Yaw: -0.086950] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 21.048727] [T/O: false ][Cruise: false ] +[Elevator: 0.063488] [Roll: -0.035294] [Yaw: -0.066873] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.995756] [T/O: false ][Cruise: false ] +[Elevator: 0.067897] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.946428] [T/O: false ][Cruise: false ] +[Elevator: 0.073302] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.901251] [T/O: false ][Cruise: false ] +[Elevator: 0.078283] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.863297] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.827547] [T/O: false ][Cruise: false ] +[Elevator: 0.088788] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.791410] [T/O: false ][Cruise: false ] +[Elevator: 0.093648] [Roll: -0.035294] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.754086] [T/O: false ][Cruise: false ] +[Elevator: 0.096658] [Roll: -0.037228] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.717319] [T/O: false ][Cruise: false ] +[Elevator: 0.090532] [Roll: -0.045804] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.678640] [T/O: false ][Cruise: false ] +[Elevator: 0.083702] [Roll: -0.055366] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.641857] [T/O: false ][Cruise: false ] +[Elevator: 0.077059] [Roll: -0.064667] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.602636] [T/O: false ][Cruise: false ] +[Elevator: 0.070476] [Roll: -0.073883] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.565449] [T/O: false ][Cruise: false ] +[Elevator: 0.063787] [Roll: -0.083247] [Yaw: -0.050980] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.527403] [T/O: false ][Cruise: false ] +[Elevator: 0.058444] [Roll: -0.095134] [Yaw: -0.052120] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.490576] [T/O: false ][Cruise: false ] +[Elevator: 0.056993] [Roll: -0.113999] [Yaw: -0.056473] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.452965] [T/O: false ][Cruise: false ] +[Elevator: 0.055527] [Roll: -0.133053] [Yaw: -0.060870] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.418163] [T/O: false ][Cruise: false ] +[Elevator: 0.054056] [Roll: -0.152174] [Yaw: -0.065283] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.382265] [T/O: false ][Cruise: false ] +[Elevator: 0.052446] [Roll: -0.173101] [Yaw: -0.070112] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.357105] [T/O: false ][Cruise: false ] +[Elevator: 0.051046] [Roll: -0.191305] [Yaw: -0.074313] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.331148] [T/O: false ][Cruise: false ] +[Elevator: 0.058149] [Roll: -0.156313] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.303444] [T/O: false ][Cruise: false ] +[Elevator: 0.066259] [Roll: -0.115764] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.276754] [T/O: false ][Cruise: false ] +[Elevator: 0.073639] [Roll: -0.078866] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.249500] [T/O: false ][Cruise: false ] +[Elevator: 0.081402] [Roll: -0.040048] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.224077] [T/O: false ][Cruise: false ] +[Elevator: 0.088527] [Roll: -0.004422] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.196507] [T/O: false ][Cruise: false ] +[Elevator: 0.084711] [Roll: 0.002825] [Yaw: -0.075607] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.169710] [T/O: false ][Cruise: false ] +[Elevator: 0.078260] [Roll: 0.001534] [Yaw: -0.076897] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.145020] [T/O: false ][Cruise: false ] +[Elevator: 0.071922] [Roll: 0.000267] [Yaw: -0.078165] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.118847] [T/O: false ][Cruise: false ] +[Elevator: 0.065199] [Roll: -0.001078] [Yaw: -0.079509] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.091970] [T/O: false ][Cruise: false ] +[Elevator: 0.058652] [Roll: -0.002387] [Yaw: -0.080819] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.066364] [T/O: false ][Cruise: false ] +[Elevator: 0.052260] [Roll: -0.003666] [Yaw: -0.082097] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.039791] [T/O: false ][Cruise: false ] +[Elevator: 0.054463] [Roll: -0.007404] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 20.017397] [T/O: false ][Cruise: false ] +[Elevator: 0.058853] [Roll: -0.011794] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.999847] [T/O: false ][Cruise: false ] +[Elevator: 0.062967] [Roll: -0.015908] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.980679] [T/O: false ][Cruise: false ] +[Elevator: 0.067358] [Roll: -0.020299] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.963053] [T/O: false ][Cruise: false ] +[Elevator: 0.071334] [Roll: -0.024275] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.946045] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.028691] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.927429] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.034384] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.908262] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.040296] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.890326] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.046172] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.871199] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.051974] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.853184] [T/O: false ][Cruise: false ] +[Elevator: 0.074510] [Roll: -0.057890] [Yaw: -0.082353] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.834373] [T/O: false ][Cruise: false ] +[Elevator: 0.072108] [Roll: -0.050417] [Yaw: -0.083554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.816887] [T/O: false ][Cruise: false ] +[Elevator: 0.069079] [Roll: -0.039816] [Yaw: -0.085068] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.799191] [T/O: false ][Cruise: false ] +[Elevator: 0.066114] [Roll: -0.029439] [Yaw: -0.086551] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.786177] [T/O: false ][Cruise: false ] +[Elevator: 0.063020] [Roll: -0.018609] [Yaw: -0.088098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.773640] [T/O: false ][Cruise: false ] +[Elevator: 0.059910] [Roll: -0.007725] [Yaw: -0.089653] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.761002] [T/O: false ][Cruise: false ] +[Elevator: 0.079561] [Roll: -0.003922] [Yaw: -0.091139] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.748890] [T/O: false ][Cruise: false ] +[Elevator: 0.112807] [Roll: -0.003922] [Yaw: -0.092650] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.736750] [T/O: false ][Cruise: false ] +[Elevator: 0.144740] [Roll: -0.003922] [Yaw: -0.094101] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.724979] [T/O: false ][Cruise: false ] +[Elevator: 0.177915] [Roll: -0.003922] [Yaw: -0.095609] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.712019] [T/O: false ][Cruise: false ] +[Elevator: 0.212980] [Roll: -0.003922] [Yaw: -0.097203] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.699318] [T/O: false ][Cruise: false ] +[Elevator: 0.214093] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.687260] [T/O: false ][Cruise: false ] +[Elevator: 0.175177] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.674978] [T/O: false ][Cruise: false ] +[Elevator: 0.136682] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.663372] [T/O: false ][Cruise: false ] +[Elevator: 0.098640] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.651239] [T/O: false ][Cruise: false ] +[Elevator: 0.060824] [Roll: -0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.639189] [T/O: false ][Cruise: false ] +[Elevator: 0.027290] [Roll: -0.003922] [Yaw: -0.097071] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.630386] [T/O: false ][Cruise: false ] +[Elevator: 0.025980] [Roll: -0.003922] [Yaw: -0.089213] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.621752] [T/O: false ][Cruise: false ] +[Elevator: 0.024670] [Roll: -0.003922] [Yaw: -0.081351] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.613504] [T/O: false ][Cruise: false ] +[Elevator: 0.023376] [Roll: -0.003922] [Yaw: -0.073586] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.604893] [T/O: false ][Cruise: false ] +[Elevator: 0.022048] [Roll: -0.003922] [Yaw: -0.065620] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.596415] [T/O: false ][Cruise: false ] +[Elevator: 0.020756] [Roll: -0.003922] [Yaw: -0.057867] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.587690] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.050821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.579697] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.049342] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.571215] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.047919] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.563158] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.046426] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.554379] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.044946] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.546204] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.003922] [Yaw: -0.043525] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.537304] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.002675] [Yaw: -0.041891] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.528759] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: -0.001239] [Yaw: -0.040454] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.522400] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.000281] [Yaw: -0.038935] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.517263] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.001740] [Yaw: -0.037476] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.511908] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003282] [Yaw: -0.035933] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.506802] [T/O: false ][Cruise: false ] +[Elevator: 0.023413] [Roll: 0.003161] [Yaw: -0.037577] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.501816] [T/O: false ][Cruise: false ] +[Elevator: 0.030547] [Roll: 0.001734] [Yaw: -0.041858] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.496689] [T/O: false ][Cruise: false ] +[Elevator: 0.037757] [Roll: 0.000292] [Yaw: -0.046184] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.491341] [T/O: false ][Cruise: false ] +[Elevator: 0.045065] [Roll: -0.001170] [Yaw: -0.050568] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.486013] [T/O: false ][Cruise: false ] +[Elevator: 0.052107] [Roll: -0.002578] [Yaw: -0.054794] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.480942] [T/O: false ][Cruise: false ] +[Elevator: 0.060525] [Roll: -0.004918] [Yaw: -0.058872] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476025] [T/O: false ][Cruise: false ] +[Elevator: 0.164880] [Roll: -0.066040] [Yaw: -0.061854] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.470619] [T/O: false ][Cruise: false ] +[Elevator: 0.271730] [Roll: -0.128624] [Yaw: -0.064907] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.465567] [T/O: false ][Cruise: false ] +[Elevator: 0.374808] [Roll: -0.188998] [Yaw: -0.067852] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.460232] [T/O: false ][Cruise: false ] +[Elevator: 0.482170] [Roll: -0.251881] [Yaw: -0.070919] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.455774] [T/O: false ][Cruise: false ] +[Elevator: 0.582515] [Roll: -0.310655] [Yaw: -0.073786] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.452011] [T/O: false ][Cruise: false ] +[Elevator: 0.595624] [Roll: -0.337710] [Yaw: -0.076732] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.448458] [T/O: false ][Cruise: false ] +[Elevator: 0.580642] [Roll: -0.352692] [Yaw: -0.079456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.444574] [T/O: false ][Cruise: false ] +[Elevator: 0.563918] [Roll: -0.369415] [Yaw: -0.082496] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.440929] [T/O: false ][Cruise: false ] +[Elevator: 0.549063] [Roll: -0.384270] [Yaw: -0.085197] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.437038] [T/O: false ][Cruise: false ] +[Elevator: 0.532098] [Roll: -0.401235] [Yaw: -0.088282] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.433222] [T/O: false ][Cruise: false ] +[Elevator: 0.514447] [Roll: -0.416512] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.429647] [T/O: false ][Cruise: false ] +[Elevator: 0.495941] [Roll: -0.428850] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.426010] [T/O: false ][Cruise: false ] +[Elevator: 0.475473] [Roll: -0.442495] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.422232] [T/O: false ][Cruise: false ] +[Elevator: 0.456078] [Roll: -0.455425] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.418526] [T/O: false ][Cruise: false ] +[Elevator: 0.437008] [Roll: -0.468138] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.414978] [T/O: false ][Cruise: false ] +[Elevator: 0.417521] [Roll: -0.481130] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.411415] [T/O: false ][Cruise: false ] +[Elevator: 0.389526] [Roll: -0.471302] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.407932] [T/O: false ][Cruise: false ] +[Elevator: 0.326821] [Roll: -0.389002] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.405399] [T/O: false ][Cruise: false ] +[Elevator: 0.266196] [Roll: -0.309431] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.402935] [T/O: false ][Cruise: false ] +[Elevator: 0.205624] [Roll: -0.229931] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.400377] [T/O: false ][Cruise: false ] +[Elevator: 0.140271] [Roll: -0.144154] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.397635] [T/O: false ][Cruise: false ] +[Elevator: 0.076016] [Roll: -0.059820] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.395128] [T/O: false ][Cruise: false ] +[Elevator: 0.028148] [Roll: -0.001425] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.392736] [T/O: false ][Cruise: false ] +[Elevator: 0.031905] [Roll: -0.030223] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.390240] [T/O: false ][Cruise: false ] +[Elevator: 0.035840] [Roll: -0.060391] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.387619] [T/O: false ][Cruise: false ] +[Elevator: 0.039733] [Roll: -0.090240] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.385241] [T/O: false ][Cruise: false ] +[Elevator: 0.043543] [Roll: -0.119452] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.382738] [T/O: false ][Cruise: false ] +[Elevator: 0.047271] [Roll: -0.148034] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.380409] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.176337] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.377945] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.142954] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.375563] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.112083] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.373009] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.078129] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.374306] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.046353] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.375807] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.013099] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.377333] [T/O: false ][Cruise: false ] +[Elevator: 0.049051] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.378815] [T/O: false ][Cruise: false ] +[Elevator: 0.045306] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.380262] [T/O: false ][Cruise: false ] +[Elevator: 0.041497] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.381760] [T/O: false ][Cruise: false ] +[Elevator: 0.037874] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.383171] [T/O: false ][Cruise: false ] +[Elevator: 0.034203] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.384668] [T/O: false ][Cruise: false ] +[Elevator: 0.030499] [Roll: 0.003922] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.386173] [T/O: false ][Cruise: false ] +[Elevator: 0.029269] [Roll: 0.003619] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.387560] [T/O: false ][Cruise: false ] +[Elevator: 0.037876] [Roll: 0.002184] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.389050] [T/O: false ][Cruise: false ] +[Elevator: 0.046546] [Roll: 0.000739] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.390480] [T/O: false ][Cruise: false ] +[Elevator: 0.054748] [Roll: -0.000628] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.392042] [T/O: false ][Cruise: false ] +[Elevator: 0.063584] [Roll: -0.002101] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.394964] [T/O: false ][Cruise: false ] +[Elevator: 0.072556] [Roll: -0.003596] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.400299] [T/O: false ][Cruise: false ] +[Elevator: 0.078078] [Roll: 0.030575] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.405624] [T/O: false ][Cruise: false ] +[Elevator: 0.082340] [Roll: 0.071771] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.410780] [T/O: false ][Cruise: false ] +[Elevator: 0.086735] [Roll: 0.114259] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.415932] [T/O: false ][Cruise: false ] +[Elevator: 0.090937] [Roll: 0.154874] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.420927] [T/O: false ][Cruise: false ] +[Elevator: 0.095035] [Roll: 0.194489] [Yaw: -0.090196] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.426035] [T/O: false ][Cruise: false ] +[Elevator: 0.104855] [Roll: 0.233932] [Yaw: -0.090555] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.430899] [T/O: false ][Cruise: false ] +[Elevator: 0.128130] [Roll: 0.269458] [Yaw: -0.091780] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.436209] [T/O: false ][Cruise: false ] +[Elevator: 0.153486] [Roll: 0.308159] [Yaw: -0.093114] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.441347] [T/O: false ][Cruise: false ] +[Elevator: 0.177775] [Roll: 0.345232] [Yaw: -0.094393] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.446545] [T/O: false ][Cruise: false ] +[Elevator: 0.202470] [Roll: 0.382924] [Yaw: -0.095692] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.451591] [T/O: false ][Cruise: false ] +[Elevator: 0.226420] [Roll: 0.419479] [Yaw: -0.096953] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.456831] [T/O: false ][Cruise: false ] +[Elevator: 0.239960] [Roll: 0.436529] [Yaw: -0.098800] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.461901] [T/O: false ][Cruise: false ] +[Elevator: 0.204273] [Roll: 0.363880] [Yaw: -0.102623] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466156] [T/O: false ][Cruise: false ] +[Elevator: 0.170065] [Roll: 0.294244] [Yaw: -0.106289] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.469110] [T/O: false ][Cruise: false ] +[Elevator: 0.135388] [Roll: 0.223650] [Yaw: -0.110004] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.472143] [T/O: false ][Cruise: false ] +[Elevator: 0.097247] [Roll: 0.146006] [Yaw: -0.114090] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.474972] [T/O: false ][Cruise: false ] +[Elevator: 0.062510] [Roll: 0.075291] [Yaw: -0.117812] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.478088] [T/O: false ][Cruise: false ] +[Elevator: 0.027422] [Roll: 0.003922] [Yaw: -0.121626] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.481056] [T/O: false ][Cruise: false ] +[Elevator: 0.025953] [Roll: 0.003922] [Yaw: -0.124564] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.483772] [T/O: false ][Cruise: false ] +[Elevator: 0.024554] [Roll: 0.003922] [Yaw: -0.127362] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.486765] [T/O: false ][Cruise: false ] +[Elevator: 0.023097] [Roll: 0.003922] [Yaw: -0.130276] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.489620] [T/O: false ][Cruise: false ] +[Elevator: 0.021713] [Roll: 0.003922] [Yaw: -0.133046] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.492491] [T/O: false ][Cruise: false ] +[Elevator: 0.020268] [Roll: 0.003922] [Yaw: -0.135934] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.495325] [T/O: false ][Cruise: false ] +[Elevator: 0.018959] [Roll: 0.003922] [Yaw: -0.132062] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.498213] [T/O: false ][Cruise: false ] +[Elevator: 0.017650] [Roll: 0.003922] [Yaw: -0.121588] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.501165] [T/O: false ][Cruise: false ] +[Elevator: 0.016313] [Roll: 0.003922] [Yaw: -0.110897] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.504280] [T/O: false ][Cruise: false ] +[Elevator: 0.014997] [Roll: 0.003922] [Yaw: -0.100367] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.504013] [T/O: false ][Cruise: false ] +[Elevator: 0.013696] [Roll: 0.003922] [Yaw: -0.089956] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.502136] [T/O: false ][Cruise: false ] +[Elevator: 0.012488] [Roll: 0.003922] [Yaw: -0.080292] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.500090] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.498133] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.496176] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.494131] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.492170] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.490175] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.074510] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.488270] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.076124] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.486265] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.080357] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.484316] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.084577] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.482414] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.088769] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.480419] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.093097] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.478373] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.097332] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.477076] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476187] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.475225] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.474321] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.473375] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.472486] [T/O: false ][Cruise: false ] +[Elevator: 0.011963] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.471579] [T/O: false ][Cruise: false ] +[Elevator: 0.013382] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.470703] [T/O: false ][Cruise: false ] +[Elevator: 0.014711] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.469814] [T/O: false ][Cruise: false ] +[Elevator: 0.016135] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.468874] [T/O: false ][Cruise: false ] +[Elevator: 0.017586] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467962] [T/O: false ][Cruise: false ] +[Elevator: 0.018946] [Roll: 0.003922] [Yaw: -0.098039] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467096] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.098758] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466139] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.100201] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.465252] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.101557] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466173] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.102879] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467085] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.104260] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.467922] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.105565] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.468857] [T/O: false ][Cruise: false ] +[Elevator: 0.043643] [Roll: -0.017710] [Yaw: -0.108286] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.469797] [T/O: false ][Cruise: false ] +[Elevator: 0.070916] [Roll: -0.042256] [Yaw: -0.111013] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.470663] [T/O: false ][Cruise: false ] +[Elevator: 0.099533] [Roll: -0.068011] [Yaw: -0.113875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.471664] [T/O: false ][Cruise: false ] +[Elevator: 0.129786] [Roll: -0.095239] [Yaw: -0.116900] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.472525] [T/O: false ][Cruise: false ] +[Elevator: 0.156932] [Roll: -0.119670] [Yaw: -0.119615] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.473440] [T/O: false ][Cruise: false ] +[Elevator: 0.169379] [Roll: -0.132380] [Yaw: -0.122012] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.474304] [T/O: false ][Cruise: false ] +[Elevator: 0.147031] [Roll: -0.117015] [Yaw: -0.123409] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.475220] [T/O: false ][Cruise: false ] +[Elevator: 0.124736] [Roll: -0.101688] [Yaw: -0.124802] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476143] [T/O: false ][Cruise: false ] +[Elevator: 0.102877] [Roll: -0.086659] [Yaw: -0.126168] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.476973] [T/O: false ][Cruise: false ] +[Elevator: 0.081943] [Roll: -0.072267] [Yaw: -0.127477] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.477596] [T/O: false ][Cruise: false ] +[Elevator: 0.060080] [Roll: -0.057236] [Yaw: -0.128843] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.475786] [T/O: false ][Cruise: false ] +[Elevator: 0.050233] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.473938] [T/O: false ][Cruise: false ] +[Elevator: 0.048927] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.472004] [T/O: false ][Cruise: false ] +[Elevator: 0.047550] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.470154] [T/O: false ][Cruise: false ] +[Elevator: 0.046305] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.468306] [T/O: false ][Cruise: false ] +[Elevator: 0.044918] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.466345] [T/O: false ][Cruise: false ] +[Elevator: 0.043555] [Roll: -0.050980] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.464384] [T/O: false ][Cruise: false ] +[Elevator: 0.046854] [Roll: -0.053768] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.462599] [T/O: false ][Cruise: false ] +[Elevator: 0.051883] [Roll: -0.057540] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.460615] [T/O: false ][Cruise: false ] +[Elevator: 0.057610] [Roll: -0.061835] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.458698] [T/O: false ][Cruise: false ] +[Elevator: 0.062943] [Roll: -0.065834] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.456760] [T/O: false ][Cruise: false ] +[Elevator: 0.068305] [Roll: -0.069857] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.455006] [T/O: false ][Cruise: false ] +[Elevator: 0.073390] [Roll: -0.073670] [Yaw: -0.129412] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.453091] [T/O: false ][Cruise: false ] +[Elevator: 0.107043] [Roll: -0.089094] [Yaw: -0.130534] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.451160] [T/O: false ][Cruise: false ] +[Elevator: 0.145421] [Roll: -0.106297] [Yaw: -0.131857] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.444996] [T/O: false ][Cruise: false ] +[Elevator: 0.185754] [Roll: -0.124378] [Yaw: -0.133248] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.438324] [T/O: false ][Cruise: false ] +[Elevator: 0.226116] [Roll: -0.142471] [Yaw: -0.134640] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.431948] [T/O: false ][Cruise: false ] +[Elevator: 0.267464] [Roll: -0.161006] [Yaw: -0.136065] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.425167] [T/O: false ][Cruise: false ] +[Elevator: 0.297001] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.419069] [T/O: false ][Cruise: false ] +[Elevator: 0.261216] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.412285] [T/O: false ][Cruise: false ] +[Elevator: 0.224990] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.406185] [T/O: false ][Cruise: false ] +[Elevator: 0.192344] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.399675] [T/O: false ][Cruise: false ] +[Elevator: 0.157425] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.393480] [T/O: false ][Cruise: false ] +[Elevator: 0.121195] [Roll: -0.176471] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.386883] [T/O: false ][Cruise: false ] +[Elevator: 0.093184] [Roll: -0.165302] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.380449] [T/O: false ][Cruise: false ] +[Elevator: 0.078053] [Roll: -0.130502] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.373613] [T/O: false ][Cruise: false ] +[Elevator: 0.064038] [Roll: -0.098267] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.367378] [T/O: false ][Cruise: false ] +[Elevator: 0.050422] [Roll: -0.066952] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.360542] [T/O: false ][Cruise: false ] +[Elevator: 0.036249] [Roll: -0.034353] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.353676] [T/O: false ][Cruise: false ] +[Elevator: 0.021311] [Roll: 0.000005] [Yaw: -0.137255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.346455] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.141950] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.339710] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.147513] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.332771] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.152671] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.326487] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.157409] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.319832] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.162454] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.313665] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: -0.167255] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.307354] [T/O: false ][Cruise: false ] +[Elevator: 0.018632] [Roll: 0.002946] [Yaw: -0.170578] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.300863] [T/O: false ][Cruise: false ] +[Elevator: 0.017302] [Roll: 0.001616] [Yaw: -0.173239] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.293636] [T/O: false ][Cruise: false ] +[Elevator: 0.015859] [Roll: 0.000173] [Yaw: -0.176125] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.286793] [T/O: false ][Cruise: false ] +[Elevator: 0.014472] [Roll: -0.001214] [Yaw: -0.178898] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.188354] [T/O: false ][Cruise: false ] +[Elevator: 0.035294] [Roll: -0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 19.073608] [T/O: false ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.302440] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.983284] [T/O: false ][Cruise: false ] +[Elevator: 0.039761] [Roll: -0.000545] [Yaw: 0.010674] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.941603] [T/O: false ][Cruise: false ] +[Elevator: 0.029769] [Roll: 0.003922] [Yaw: 0.053837] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923561] [T/O: false ][Cruise: false ] +[Elevator: 0.043137] [Roll: 0.003922] [Yaw: 0.027287] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.910906] [T/O: false ][Cruise: false ] +[Elevator: 0.038839] [Roll: 0.003922] [Yaw: 0.006712] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908215] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.027451] [Yaw: 0.330643] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.908644] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.011765] [Yaw: 0.001279] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.905338] [T/O: false ][Cruise: false ] +[Elevator: 0.027451] [Roll: 0.009014] [Yaw: -0.621021] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.911749] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.000423] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914246] [T/O: false ][Cruise: false ] +[Elevator: 0.016902] [Roll: 0.001215] [Yaw: 0.009058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923038] [T/O: false ][Cruise: false ] +[Elevator: -0.000892] [Roll: 0.013548] [Yaw: -0.313748] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921103] [T/O: false ][Cruise: false ] +[Elevator: 0.011993] [Roll: -0.003922] [Yaw: 0.041997] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914537] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: -0.002159] [Yaw: 0.044467] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919039] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: 0.633925] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.919489] [T/O: false ][Cruise: false ] +[Elevator: 0.011765] [Roll: 0.003922] [Yaw: 0.517308] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.921049] [T/O: false ][Cruise: false ] +[Elevator: -0.003148] [Roll: 0.049047] [Yaw: -0.047887] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.925831] [T/O: false ][Cruise: false ] +[Elevator: 0.023998] [Roll: 0.014354] [Yaw: -0.106564] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.927254] [T/O: false ][Cruise: false ] +[Elevator: 0.008261] [Roll: 0.023947] [Yaw: -0.775766] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.920296] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.012845] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.916336] [T/O: false ][Cruise: false ] +[Elevator: 0.009066] [Roll: 0.022307] [Yaw: -0.670777] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.923712] [T/O: false ][Cruise: false ] +[Elevator: 0.012953] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928131] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928020] [T/O: false ][Cruise: false ] +[Elevator: 0.019072] [Roll: 0.011765] [Yaw: 0.645307] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.930040] [T/O: false ][Cruise: false ] +[Elevator: -0.002077] [Roll: 0.011765] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.935266] [T/O: false ][Cruise: false ] +[Elevator: 0.006592] [Roll: 0.009095] [Yaw: 0.168628] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.932112] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.011765] [Yaw: 0.145098] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.928654] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.006602] [Yaw: 0.004625] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.924543] [T/O: false ][Cruise: false ] +[Elevator: 0.020521] [Roll: -0.543810] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.917725] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.907892] [T/O: false ][Cruise: false ] +[Elevator: 0.019608] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.906967] [T/O: false ][Cruise: false ] +[Elevator: 0.012315] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913607] [T/O: false ][Cruise: false ] +[Elevator: -0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.918695] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.915726] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914089] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.011765] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.914017] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.019608] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913507] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.019311] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913252] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.007155] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913214] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913157] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913141] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913136] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 18.913139] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148799] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148793] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.003875] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.011174] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.083543] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.353572] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.345627] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.337718] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148760] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.322011] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148725] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.260750] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148676] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148618] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148563] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148510] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148458] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148415] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148378] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148348] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.223840] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148324] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.223840] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148309] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148293] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: -0.223840] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148285] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.223840] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148277] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.216596] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148275] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148273] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148273] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148278] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148293] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148314] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148345] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148395] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148437] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148481] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148522] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148557] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148586] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148609] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148635] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148652] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148664] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148671] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148676] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148678] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148680] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148683] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148688] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148700] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148707] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148717] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148725] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148734] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148740] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148743] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148754] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148799] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148745] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148733] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148722] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148718] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148716] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148718] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148720] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148727] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148734] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148740] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148747] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148755] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148768] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148741] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148740] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148742] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148744] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148744] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148755] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148801] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148760] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148745] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148741] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148739] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148737] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148735] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148737] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148739] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148753] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148753] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148757] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148778] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148778] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148772] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148793] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148799] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148801] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148801] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148824] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148768] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148761] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148760] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148756] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148754] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148756] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148774] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148774] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148760] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148786] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148778] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148754] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148743] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148737] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148735] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148735] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148737] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148739] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148739] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148754] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148761] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148761] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148755] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148747] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148742] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148744] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148760] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148763] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148769] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148777] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148756] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148743] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148741] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148743] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148745] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148750] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148755] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148772] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148784] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148793] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148799] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148839] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148771] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148758] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148754] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148747] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148743] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148742] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148751] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148749] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148751] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148752] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148824] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148814] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148824] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148765] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148772] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148774] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148828] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148828] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148839] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148785] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148779] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148775] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148772] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148767] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148762] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148824] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148778] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148781] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148783] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148788] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.054859] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.077619] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.095643] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.181120] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.174181] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.174181] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.167297] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.167297] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.167297] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.167297] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.181120] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.181120] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148718] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148688] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: 0.146987] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148660] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.167297] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148638] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.167297] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148617] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148594] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: -0.140336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148575] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -0.181120] [Yaw: -0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148558] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.202254] [Yaw: -0.931850] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148542] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.202254] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148535] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.202254] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148522] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.202254] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148517] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.195158] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148507] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148499] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148482] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148471] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148456] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148444] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148431] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148417] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148405] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148397] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148382] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148375] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148369] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148361] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148361] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148361] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148366] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148372] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148379] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148379] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148381] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148383] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148385] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148385] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148385] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148387] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148389] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148389] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.114377] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148398] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148401] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148411] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148424] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148439] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148471] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148507] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148537] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148567] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148603] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148630] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148657] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148680] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148700] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148715] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148726] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148736] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148755] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148768] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148791] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148814] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148839] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148814] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148794] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148790] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148793] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148793] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148797] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148814] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148821] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148806] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148804] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148824] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148807] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148805] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148800] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148814] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148809] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148810] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148812] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148828] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148904] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148825] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148816] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148822] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148826] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148828] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148833] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148834] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148830] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148841] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148889] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148885] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148873] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148957] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148880] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148904] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148888] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148957] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148957] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148897] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148957] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148881] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148905] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148920] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148954] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148957] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148955] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148950] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148961] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148969] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148949] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148956] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148960] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148963] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148978] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148967] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148971] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148966] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148987] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148975] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148968] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149000] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148994] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148991] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148992] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148984] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148977] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148988] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148973] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148990] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149074] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149098] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149104] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149106] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149110] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149062] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149005] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149010] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149017] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149072] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149093] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149062] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149111] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149099] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149009] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149014] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149016] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149035] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149064] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149046] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149049] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149051] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149058] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149099] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149099] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149108] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149112] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149117] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149117] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149119] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149117] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149021] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149011] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149007] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149004] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149002] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148997] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149013] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149026] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149023] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149029] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149031] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149039] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149047] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149111] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149117] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149115] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149111] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149105] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149104] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149111] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149111] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149109] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149107] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149107] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149099] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149097] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149083] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149092] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149099] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149108] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149112] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149112] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149106] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149042] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149036] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149034] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149038] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149044] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149053] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149080] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149082] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149090] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149088] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149084] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149073] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149059] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149067] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149078] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149087] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149102] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149100] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149093] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149081] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149075] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149065] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149015] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149019] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149043] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149052] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149057] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149061] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149060] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149054] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149056] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149055] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149271] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149269] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149267] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149267] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149265] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149270] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149278] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149282] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149285] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149289] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149291] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149293] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149291] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149293] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149295] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149297] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149299] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149301] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149312] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149318] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149335] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149341] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149377] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149388] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.071784] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.510867] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149401] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.314215] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.761232] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -0.054859] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -0.817334] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149313] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149306] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: -0.864683] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149297] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.160469] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149297] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149297] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149302] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149310] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149321] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149324] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149336] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149336] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149340] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.044116] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149340] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.528067] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149340] [T/O: false ][Cruise: false ] +[Elevator: 0.678620] [Roll: 0.696814] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149342] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.202254] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149324] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.990206] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149283] [T/O: false ][Cruise: false ] +[Elevator: -0.761232] [Roll: -0.687705] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149225] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.231131] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149165] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149133] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149117] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149129] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149162] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149205] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149251] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149293] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149332] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149377] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.536710] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149372] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.485283] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149338] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.140336] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.705946] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149309] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149300] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149284] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149284] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149286] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149295] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149302] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149312] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149318] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.054859] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149333] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.060399] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.188113] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.377622] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149367] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.044116] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149334] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.044116] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149329] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.038928] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149348] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149372] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.033876] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.291058] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.353573] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149377] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.337718] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.306456] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149363] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.077619] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.174181] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.167297] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149401] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149410] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.231131] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.322011] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149434] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149430] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149425] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149417] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149400] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.044116] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.044116] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149388] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.003875] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149383] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149383] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149379] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149342] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149317] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149316] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149318] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149322] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149333] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149335] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149362] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.209401] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.253279] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.188113] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149363] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149348] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.188113] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.223840] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149321] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.223840] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149315] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149315] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149313] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149309] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149308] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149308] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149310] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149310] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149312] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149318] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149335] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149350] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149333] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149332] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149332] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149329] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149331] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149335] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149342] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149351] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149348] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149360] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.054859] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.127224] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.231131] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.275821] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.361554] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.519453] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.615719] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.761232] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.960939] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.826761] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149313] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149303] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149291] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149285] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149288] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149303] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149322] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149363] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149399] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149400] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149392] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149351] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.003875] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149349] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.011174] [Yaw: 0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149351] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149386] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149390] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149401] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149415] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149425] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149432] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149438] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149436] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149432] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149415] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149399] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149354] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149325] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149317] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149338] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149348] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149362] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149385] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149399] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149449] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149453] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149460] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149467] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149467] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149466] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149456] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149408] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149419] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149447] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149457] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149458] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149453] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149442] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149428] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149411] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149338] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149334] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149324] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149324] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149330] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149333] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149335] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149386] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149390] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149367] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149334] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149307] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149298] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149294] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149290] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149294] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149298] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149303] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149309] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149321] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149336] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149347] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149359] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149401] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149408] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149447] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149447] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149442] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149434] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149377] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149388] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149398] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149453] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149467] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149475] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149477] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149483] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149479] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149462] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149436] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149411] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149410] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149412] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149408] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149399] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149410] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149436] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149423] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149408] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149377] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149383] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149386] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149401] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149413] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149458] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149460] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149458] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149433] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149425] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149411] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149389] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149363] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149359] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149355] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149363] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149385] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149417] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149423] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149414] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149410] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149404] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149405] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149413] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149417] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149456] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149456] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149450] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149450] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149451] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149456] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149454] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149452] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149431] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149416] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149430] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149434] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149436] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149438] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149443] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149450] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149458] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149467] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149471] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149461] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149447] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149432] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149415] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149402] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149367] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149341] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149354] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149398] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149411] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149434] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149432] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149419] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149415] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149407] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149398] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149386] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149366] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149367] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149393] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149403] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149406] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149412] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149414] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149431] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149439] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149455] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149463] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149474] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149478] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149482] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149478] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149414] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149427] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149433] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149447] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149446] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149441] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.459966] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149424] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.562804] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149420] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.000981] [Yaw: -1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149435] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149437] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149444] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149456] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149469] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149484] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149495] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.089552] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149500] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.624629] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149504] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.642527] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149501] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.912558] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149489] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149476] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149460] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.146987] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149440] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149421] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149400] [T/O: false ][Cruise: false ] +[Elevator: 0.798545] [Roll: -0.485283] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149291] [T/O: false ][Cruise: false ] +[Elevator: -0.845680] [Roll: 0.493782] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149231] [T/O: false ][Cruise: false ] +[Elevator: -0.941527] [Roll: -0.476814] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149178] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149156] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: -0.209401] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149158] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149179] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149209] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149240] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149273] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149302] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149324] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149336] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.019659] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149343] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.038928] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.049429] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149317] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.060399] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.089552] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.101813] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 0.054859] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.015298] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149358] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -0.140336] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: -0.554078] [Roll: -0.468374] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149385] [T/O: false ][Cruise: false ] +[Elevator: -0.545380] [Roll: -0.459966] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149409] [T/O: false ][Cruise: false ] +[Elevator: -0.418388] [Roll: -0.451588] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149445] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.223840] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149479] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.174181] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149517] [T/O: false ][Cruise: false ] +[Elevator: 0.260750] [Roll: -0.101813] [Yaw: -0.019659] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149554] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.071784] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149579] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: -0.007337] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149582] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149567] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149529] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149480] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149356] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149339] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149332] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149336] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149346] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149362] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149388] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149396] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149395] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149385] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149334] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149328] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149338] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149352] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149394] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149415] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149428] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149429] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.095643] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149422] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.337718] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149408] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149357] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149372] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149374] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149364] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149367] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149365] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149370] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: -0.028969] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149382] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.660524] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149380] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149383] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.015298] [Yaw: 0.322011] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149381] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.902942] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149379] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149369] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:0.005381] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.077619] [Throttle:0.017606] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: -0.003875] [Throttle:0.054888] [Flaps: 0.000000] [Data Ref: 14.149371] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.094436] [Flaps: 0.000000] [Data Ref: 14.149373] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.007337] [Yaw: 0.011174] [Throttle:0.131372] [Flaps: 0.000000] [Data Ref: 14.149375] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.172636] [Flaps: 0.000000] [Data Ref: 14.149379] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.208175] [Flaps: 0.000000] [Data Ref: 14.149390] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.249384] [Flaps: 0.000000] [Data Ref: 14.149391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.285056] [Flaps: 0.000000] [Data Ref: 14.149387] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.322836] [Flaps: 0.000000] [Data Ref: 14.149368] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.019659] [Throttle:0.362087] [Flaps: 0.000000] [Data Ref: 14.149319] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.403696] [Flaps: 0.000000] [Data Ref: 14.149254] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.440434] [Flaps: 0.000000] [Data Ref: 14.149165] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:0.482142] [Flaps: 0.000000] [Data Ref: 14.149079] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:0.522551] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.563545] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:0.604254] [Flaps: 0.000000] [Data Ref: 14.149086] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:0.644120] [Flaps: 0.000000] [Data Ref: 14.149195] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.683538] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:0.722462] [Flaps: 0.000000] [Data Ref: 14.149518] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:0.761235] [Flaps: 0.000000] [Data Ref: 14.149710] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.800479] [Flaps: 0.000000] [Data Ref: 14.149908] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.840216] [Flaps: 0.000000] [Data Ref: 14.150105] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.879113] [Flaps: 0.000000] [Data Ref: 14.149933] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.918899] [Flaps: 0.000000] [Data Ref: 14.149558] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.959416] [Flaps: 0.000000] [Data Ref: 14.149300] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:0.998948] [Flaps: 0.000000] [Data Ref: 14.149156] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149077] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149154] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149448] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149642] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150029] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150707] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150702] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150597] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150363] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150037] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149679] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149150] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148863] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148607] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148355] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148065] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147574] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146688] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145341] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143408] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.167297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140865] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137765] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.742711] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134178] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.554079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130466] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.536710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126617] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.536710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122869] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119634] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.705946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117011] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.742711] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114822] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.705946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112973] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.696814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111697] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.633565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110662] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.554079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109686] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.468375] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108725] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108488] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109173] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110261] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112277] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115040] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122065] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125904] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131203] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134944] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138697] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142254] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146074] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151218] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152315] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151608] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150304] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148359] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146037] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141831] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139416] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137553] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136374] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135734] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135429] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135672] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136354] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137946] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140049] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142862] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146799] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150777] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154751] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159136] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163046] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167077] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170622] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173951] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176876] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179320] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180501] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180266] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179021] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177765] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177165] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177721] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178823] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180490] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.024224] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182695] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185003] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187316] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189504] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191298] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192634] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193746] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195224] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197189] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199345] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201829] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204536] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207824] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212234] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217909] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224602] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232153] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241052] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.250711] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.260603] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.270836] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.281508] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.292557] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.304573] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.318369] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.334581] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.353536] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.375495] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.398721] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.425978] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.460608] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.500593] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.552058] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.613330] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.687218] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.780671] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.898680] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.031572] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.198255] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.383350] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: 0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.597175] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: 0.108059] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.820493] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.140336] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.108084] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.153698] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.421032] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.153698] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.779682] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.146987] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.194464] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: 0.108059] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.615065] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.044116] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.092377] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.011174] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.638947] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.195456] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.787067] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.392818] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.035328] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.714191] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.396767] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.170628] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.918018] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.697079] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.544081] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.367193] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.147999] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.956234] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.768877] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.593161] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.389261] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.111948] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.892279] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.071784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.658615] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.071784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.414963] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.148766] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.864845] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.604855] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.259792] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.904675] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.538933] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.147141] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.735062] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.339287] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.909096] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.456940] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.071784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.000988] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.011174] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.546814] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.106518] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.617241] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.118652] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.624592] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.129723] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.649975] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.199829] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.735157] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.326283] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.898376] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.471306] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.076008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.685570] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.351608] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.993336] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.658363] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.361767] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.093040] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.849312] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.703621] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.560600] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.438263] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.294327] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.225716] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.220222] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.230816] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.251755] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.352135] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.472832] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.614922] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.821388] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.139626] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.437958] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.769630] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.139526] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.564209] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.025421] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.517487] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.141037] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.857162] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.484749] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.153976] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.864342] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.643562] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.033876] [Yaw: -0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.445816] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.033876] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.303154] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.033876] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.262123] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.033876] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.228996] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.028969] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.228783] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.293503] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.501045] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.019659] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.709320] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.837181] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.015298] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.024597] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.330330] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.514404] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.907059] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.167274] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.434654] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.869362] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.208542] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.591721] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.950157] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.252045] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.693100] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.213974] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.575974] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.884705] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.257706] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.699829] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.067429] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.160468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.507675] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.209401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.923874] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.283419] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.476227] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.606834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.983597] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.651513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.310135] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.633565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.496017] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: -0.571557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.717026] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.337718] [Yaw: -0.580336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.935883] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.798545] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.274963] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.922194] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.447769] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.941527] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.811493] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.941527] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.990707] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.874217] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.327728] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.941527] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.797516] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.941527] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.283463] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.970675] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.617889] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.893346] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.163864] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.798545] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.533081] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.789183] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.899490] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.554078] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.186035] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.514816] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.811142] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.180237] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.691895] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.885651] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.098434] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.399109] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.507523] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.711212] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.049429] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.872055] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.167297] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.932419] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.401982] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.981094] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.401982] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.947128] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.027390] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.963806] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.843735] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.684219] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.511719] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.291794] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.304169] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.258667] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.130020] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.985458] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.700317] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.326736] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.952240] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.463974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.959763] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.038928] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.314728] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.167297] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.611023] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.071784] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.921951] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 0.007337] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.116272] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.236145] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.028969] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.257751] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.028969] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.307281] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.293701] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.132324] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: 0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.000458] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.740204] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.019659] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.469147] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.077619] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.118347] [T/O: false ][Cruise: false ] +[Elevator: 0.554079] [Roll: -0.089552] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.754700] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.019659] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.347687] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.901398] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.412811] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.898651] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.380096] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.836212] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.252838] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.654449] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.013367] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.333893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.621948] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -1.000000] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.872345] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.071381] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.222351] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.326599] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.077619] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.367493] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.346436] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 1.000000] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.252777] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.078400] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.835876] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.491791] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.061005] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.553253] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 1.000000] [Yaw: -0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.954742] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 1.000000] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.293030] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 1.000000] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.547394] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 1.000000] [Yaw: -0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.719055] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 1.000000] [Yaw: -0.108059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.835144] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 1.000000] [Yaw: -0.114377] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.874237] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 1.000000] [Yaw: -0.114377] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.900696] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 1.000000] [Yaw: -0.108059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.735901] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 1.000000] [Yaw: -0.108059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.647369] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.544556] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.416748] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.239746] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.118164] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.964493] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.818130] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: -0.101813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.576065] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: -0.095643] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.422241] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: -0.089552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.304825] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: -0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.116135] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.955093] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.033876] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.793930] [T/O: false ][Cruise: false ] +[Elevator: 0.893346] [Roll: -0.060399] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.469589] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.365845] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.223251] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.100479] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.993271] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.915802] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.936722] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.083543] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.009842] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.083543] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.154175] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.083543] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.429077] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.083543] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.827560] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.406128] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: -0.893346] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.112000] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: -0.922194] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.970032] [T/O: false ][Cruise: false ] +[Elevator: 0.502310] [Roll: -0.941527] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.967697] [T/O: false ][Cruise: false ] +[Elevator: 0.493782] [Roll: -0.941527] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.102173] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.941527] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.361008] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: -0.669560] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.753494] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.202254] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.235260] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.153698] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.788696] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.160468] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.466675] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.209401] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.175461] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.223840] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.997421] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.369570] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.872726] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: -0.687705] [Yaw: -0.060399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.818878] [T/O: false ][Cruise: false ] +[Elevator: 0.789183] [Roll: -0.724282] [Yaw: -0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.841476] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.283419] [Yaw: -0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.911606] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.181120] [Yaw: -0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.084625] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.181120] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.240112] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.188113] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.479324] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.787949] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.185684] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.561081] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.010452] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.642944] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.277008] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.853119] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.554382] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.223840] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.409119] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.385708] [Yaw: 0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.141205] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: -0.502310] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.089020] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.443240] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.162750] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.189850] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.060399] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.308899] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.108059] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.416290] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.089552] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.612427] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.015298] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.755493] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.089552] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.908020] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.268264] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.095978] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.476814] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.374359] [T/O: false ][Cruise: false ] +[Elevator: 0.941527] [Roll: -0.528067] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.876862] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: -0.789183] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.375946] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -1.000000] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.783447] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -1.000000] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.955597] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -1.000000] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.195343] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: -1.000000] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.299225] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: -1.000000] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.400818] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -1.000000] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.536102] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.442749] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.336700] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.082245] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.796112] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.349121] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.788391] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.091095] [T/O: false ][Cruise: false ] +[Elevator: -0.038928] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.160675] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.113586] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.884125] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.541626] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.052582] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.475891] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.745239] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.917755] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.975800] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -1.000000] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.933441] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: -1.000000] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.781403] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.660524] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.534821] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.183380] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.728729] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: 0.715102] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.207275] [T/O: false ][Cruise: false ] +[Elevator: 0.874217] [Roll: 0.306456] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.633362] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.967346] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.239166] [T/O: false ][Cruise: false ] +[Elevator: 0.874217] [Roll: -0.133748] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.455597] [T/O: false ][Cruise: false ] +[Elevator: 0.476814] [Roll: -0.167297] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.690247] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.900787] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.190735] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: 0.410169] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.441925] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.810455] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.253387] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.758942] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.372559] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.113953] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.946259] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.865173] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.862335] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.991974] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.189240] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.452393] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.778015] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.176208] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.738556] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.283203] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.945251] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.643372] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.433533] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.243225] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.139130] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.124786] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.863129] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.992920] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.149536] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.361389] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.588715] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.979675] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.453400] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.956604] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.509247] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.199341] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.888977] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.523926] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.164459] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.969635] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.842896] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.871002] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.814636] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.961395] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.117340] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.108059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.396851] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.630737] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.894501] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.950531] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.364685] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.924194] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.250702] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.768402] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.808167] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.464508] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.396851] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: -0.322011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.035278] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.817657] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.573517] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.437134] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.243164] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.222931] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.186096] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.153698] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.319275] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.445862] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.461365] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.570007] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.881317] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.033876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.091370] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.468375] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.426941] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.750214] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.062347] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.405945] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.728088] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.212341] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.354675] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.775787] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.244415] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.625824] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.208344] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.834137] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.009155] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.383942] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.684448] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.233093] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.871124] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.534058] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.160469] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.804260] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.687705] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.170441] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.245851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.458069] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: 0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.846832] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.325134] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.832611] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.190216] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.547150] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.989410] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.015298] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.220032] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.579498] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.054859] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.775635] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.066042] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.258911] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.054859] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.339355] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: 0.108059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.515503] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.024224] [Yaw: 0.807929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.760193] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.476814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.971802] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.060399] [Yaw: -0.275820] [Throttle:0.982897] [Flaps: 0.000000] [Data Ref: 533.141602] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.485283] [Yaw: 1.000000] [Throttle:0.970886] [Flaps: 0.000000] [Data Ref: 536.338745] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -1.000000] [Yaw: -0.003875] [Throttle:0.989030] [Flaps: 0.000000] [Data Ref: 539.598877] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.268264] [Yaw: -0.153698] [Throttle:0.965305] [Flaps: 0.000000] [Data Ref: 542.765869] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.922194] [Yaw: 0.960939] [Throttle:0.965305] [Flaps: 0.000000] [Data Ref: 546.616333] [T/O: false ][Cruise: false ] +[Elevator: 0.855171] [Roll: -0.651513] [Yaw: -0.597975] [Throttle:0.987056] [Flaps: 0.000000] [Data Ref: 550.667358] [T/O: false ][Cruise: false ] +[Elevator: -0.970675] [Roll: -0.451588] [Yaw: 1.000000] [Throttle:0.987056] [Flaps: 0.000000] [Data Ref: 553.408081] [T/O: false ][Cruise: false ] +[Elevator: -0.669560] [Roll: 0.742711] [Yaw: 0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.108582] [T/O: false ][Cruise: false ] +[Elevator: 0.826761] [Roll: 0.642527] [Yaw: -0.874217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.883179] [T/O: false ][Cruise: false ] +[Elevator: 0.642527] [Roll: -0.817334] [Yaw: 0.133748] [Throttle:0.976721] [Flaps: 0.000000] [Data Ref: 561.952332] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 564.811035] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 567.540588] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 570.407471] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 573.218384] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.060399] [Yaw: -0.960939] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 576.178467] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.571557] [Yaw: -0.779844] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 579.069946] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.789183] [Yaw: 1.000000] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 581.835999] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.019659] [Yaw: -0.678620] [Throttle:0.995328] [Flaps: 0.000000] [Data Ref: 584.500549] [T/O: false ][Cruise: false ] +[Elevator: 0.902942] [Roll: 0.545380] [Yaw: -0.485283] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.143250] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.000981] [Yaw: -0.633565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.839050] [T/O: false ][Cruise: false ] +[Elevator: -0.902941] [Roll: -0.528067] [Yaw: 0.216596] [Throttle:0.974511] [Flaps: 0.000000] [Data Ref: 592.466064] [T/O: false ][Cruise: false ] +[Elevator: 0.562804] [Roll: 0.845680] [Yaw: -0.385708] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.878601] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.181120] [Yaw: -0.696813] [Throttle:0.988442] [Flaps: 0.000000] [Data Ref: 597.310364] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.238469] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.758667] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.066042] [Yaw: -0.624629] [Throttle:0.981733] [Flaps: 0.000000] [Data Ref: 602.260986] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.275821] [Yaw: -0.589143] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.652527] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: 0.443241] [Yaw: -0.434924] [Throttle:0.976079] [Flaps: 0.000000] [Data Ref: 607.071411] [T/O: false ][Cruise: false ] +[Elevator: 0.715102] [Roll: 0.562804] [Yaw: -0.238468] [Throttle:0.976495] [Flaps: 0.000000] [Data Ref: 609.366516] [T/O: false ][Cruise: false ] +[Elevator: -0.902941] [Roll: -0.510867] [Yaw: 0.519453] [Throttle:0.977326] [Flaps: 0.000000] [Data Ref: 611.766663] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: 0.418388] [Yaw: -0.624629] [Throttle:0.996499] [Flaps: 0.000000] [Data Ref: 614.144226] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.101813] [Yaw: 0.410169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.394226] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.575623] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.843079] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.012085] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.941895] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.986389] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.022278] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.108521] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: -0.167297] [Yaw: 0.133748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.076538] [T/O: false ][Cruise: false ] +[Elevator: -0.751960] [Roll: 0.000981] [Yaw: 0.633565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.106323] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.153698] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.042358] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.114377] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.031067] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.028969] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.029968] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.077619] [Yaw: 0.140336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.921875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.015298] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.595459] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.201843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.743958] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.028969] [Throttle:0.988958] [Flaps: 0.000000] [Data Ref: 649.136780] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.947767] [Flaps: 0.000000] [Data Ref: 650.489807] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.908455] [Flaps: 0.000000] [Data Ref: 651.787903] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.885076] [Flaps: 0.000000] [Data Ref: 653.057861] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.885076] [Flaps: 0.000000] [Data Ref: 654.225403] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.120767] [Throttle:0.844846] [Flaps: 0.000000] [Data Ref: 655.288513] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.802914] [Flaps: 0.000000] [Data Ref: 656.425415] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.756261] [Flaps: 0.000000] [Data Ref: 657.446594] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.715473] [Flaps: 0.000000] [Data Ref: 658.394043] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.672989] [Flaps: 0.000000] [Data Ref: 659.268494] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.632955] [Flaps: 0.000000] [Data Ref: 660.051147] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.591593] [Flaps: 0.000000] [Data Ref: 660.825012] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.550358] [Flaps: 0.000000] [Data Ref: 661.506165] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.511175] [Flaps: 0.000000] [Data Ref: 662.145508] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.470138] [Flaps: 0.000000] [Data Ref: 662.816223] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.428477] [Flaps: 0.000000] [Data Ref: 663.363403] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.388571] [Flaps: 0.000000] [Data Ref: 663.898987] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.349718] [Flaps: 0.000000] [Data Ref: 664.377441] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.306149] [Flaps: 0.000000] [Data Ref: 664.841919] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.265785] [Flaps: 0.000000] [Data Ref: 665.284241] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.220258] [Flaps: 0.000000] [Data Ref: 665.710693] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.171239] [Flaps: 0.000000] [Data Ref: 666.083374] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.123032] [Flaps: 0.000000] [Data Ref: 666.378845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.127224] [Throttle:0.075171] [Flaps: 0.000000] [Data Ref: 666.611877] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.798401] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.910828] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.951355] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.925110] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.825806] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.664185] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.419312] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 666.124878] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 665.819763] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.038928] [Throttle:0.053697] [Flaps: 0.000000] [Data Ref: 665.443970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.108059] [Throttle:0.030007] [Flaps: 0.000000] [Data Ref: 665.029419] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 664.572693] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 664.044006] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 663.449951] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 662.794128] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 662.091003] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 661.337830] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 660.470764] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 659.565979] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 658.605591] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 657.574890] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 656.550842] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 655.418213] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 654.260071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 652.976501] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 651.706848] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 650.274353] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 647.921387] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 646.156921] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 644.344666] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 642.576538] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 640.824280] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 638.980225] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 637.135986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 635.076721] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 632.935974] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 630.872681] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 628.566162] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 626.432434] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 624.222595] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 621.872375] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 619.568970] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 616.422668] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 613.958862] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 611.675598] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 609.143127] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.054859] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 606.555908] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.253279] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 604.070801] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.275821] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 601.601563] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.353573] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 598.884033] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.418388] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 596.417236] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.181120] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 593.843750] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 591.087463] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 588.275024] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 585.279663] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 582.172546] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 579.390076] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 576.442078] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 573.478333] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 570.454895] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 567.251038] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 563.963501] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132825] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135880] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139025] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.143160] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.145929] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.148604] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.151063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153370] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155172] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156543] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157372] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157713] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158192] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158196] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157571] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156624] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155541] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154263] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152607] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.150817] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.148511] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.146336] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.143904] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.141351] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139015] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.136944] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135098] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133750] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132932] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132626] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133321] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134112] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135055] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.136317] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.138317] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139208] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139606] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139915] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139769] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139001] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137594] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135711] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132954] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.130154] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127066] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.123549] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120406] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.117160] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.114805] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.113172] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.113024] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.113141] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.113669] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.114701] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.115939] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.117493] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.119595] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120784] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.121581] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.122017] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.122122] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.121988] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.121694] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.121312] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120932] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120375] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120068] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120040] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120247] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.120771] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.121843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.122416] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.122671] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.123090] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.123641] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.124516] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125775] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127480] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.129139] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.130789] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133085] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135456] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.138127] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.140763] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.143945] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.146785] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.149731] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152603] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156254] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158441] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.160191] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.161487] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162276] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162748] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162872] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162744] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162481] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.162144] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.161732] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.161220] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.160493] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.159743] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.159283] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158451] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157837] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157738] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158005] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158155] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158654] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.159097] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158372] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157441] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156301] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154732] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152582] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.150268] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.147562] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.144460] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.141204] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137671] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132665] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.130759] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.129555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128271] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127460] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127083] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126912] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126784] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126616] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126391] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126126] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126529] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126084] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125741] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125507] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125383] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125380] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125509] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.125799] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126257] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.126838] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127400] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127876] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128179] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128407] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128570] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128639] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128551] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128636] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128593] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128447] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128223] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127982] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127868] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.127878] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128123] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128440] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.128952] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.129647] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.130555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131620] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132839] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134136] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135373] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137012] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139069] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.141278] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.143433] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.145222] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.147720] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.149555] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.151287] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152989] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153459] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153575] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153625] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153865] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153986] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153977] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153965] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153980] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153728] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153792] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154085] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154410] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154733] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155028] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155277] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155825] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156691] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157364] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157446] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157373] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157341] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157273] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.157090] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156721] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156196] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.155507] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154552] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.153563] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152391] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.151155] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.149891] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.148633] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.147445] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.146337] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.145118] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.143427] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.142213] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.141136] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.140113] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.138982] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137959] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137029] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.136204] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135436] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134716] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134071] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133525] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133084] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132775] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132535] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132377] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132252] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132173] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131824] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131536] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131342] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131513] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.131836] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132259] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.132749] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.133385] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.134111] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.135041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.136191] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.137474] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.139044] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.140826] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.142708] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.144531] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.146315] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.147981] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.149376] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.151045] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.152791] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.154578] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.156347] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.158388] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.133748] [Throttle:0.012755] [Flaps: 1.000000] [Data Ref: 14.160335] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.000981] [Yaw: 0.049429] [Throttle:0.056567] [Flaps: 1.000000] [Data Ref: 14.162162] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: -0.174181] [Throttle:0.102128] [Flaps: 1.000000] [Data Ref: 14.163912] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: -0.114377] [Throttle:0.144245] [Flaps: 1.000000] [Data Ref: 14.165585] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.167253] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.168718] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170176] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.171698] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173149] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174468] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.176046] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.177894] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.179401] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.180807] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.182065] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.183001] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.182991] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.182726] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.182329] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.181790] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.181122] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.180416] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.179665] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.178860] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.178057] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.177311] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.176614] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175935] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175395] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174838] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174073] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173396] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172904] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172557] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172669] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172877] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173120] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173404] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173734] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174499] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174969] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175495] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.176039] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.168283] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.168974] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.169246] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.169446] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.169618] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170215] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170462] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170707] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.171075] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.171568] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172158] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172886] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173659] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174327] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174841] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175261] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175574] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175756] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175758] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175556] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.175202] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174705] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173963] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173037] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.171958] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170564] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.169078] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.167420] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.165496] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.162675] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.160505] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.156998] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.154084] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.151389] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.146312] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.144220] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.141992] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.140225] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.138668] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.137075] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.135971] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.134518] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.132505] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.130430] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128302] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.126369] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.124591] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.123013] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.121617] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.120464] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.119417] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.118399] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.117249] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.116014] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.114665] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.113248] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.111534] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.109456] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.107292] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.104898] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.102179] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.099898] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.097757] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.095943] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.094485] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.093461] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.092562] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.092182] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.092135] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.092420] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.093003] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.094025] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.095350] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.096924] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.099000] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.101366] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.104062] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.106745] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.109615] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.112520] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.115371] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.119144] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.122415] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.125347] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128132] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.130850] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.133676] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.136490] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.139206] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.141672] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.143983] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.146374] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.148789] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.150770] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.152317] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.153729] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.154921] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.155813] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.156251] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.156136] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.155487] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.154429] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.153403] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.151793] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.149263] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.146167] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.142777] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.139771] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.137565] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.135523] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.133694] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.131373] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.129718] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128869] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128629] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128618] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128441] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128004] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.127699] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.127419] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.126670] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.125221] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.123470] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.122353] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.122237] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.123116] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.124711] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.126517] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.128010] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.129385] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.130706] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.131932] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.133042] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.134010] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.135094] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.136039] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.136845] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.137446] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.137895] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.138337] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.138979] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.139859] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.140988] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.142501] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.144770] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.146347] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.147936] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.149712] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.151778] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.153747] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.155588] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.157315] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.158794] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.159959] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.161109] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.161853] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.162472] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.163016] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.163574] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.164180] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.164802] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.165431] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.166120] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.166982] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.167896] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.168842] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.169803] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.170862] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.171806] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.172575] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173306] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.173887] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174349] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174660] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174844] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174922] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174915] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174858] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174788] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174721] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174677] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174655] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174660] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174689] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174736] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174784] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174842] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174890] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174918] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174931] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174929] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174912] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174891] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174863] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174833] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174807] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174786] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174768] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174763] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174762] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174768] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174782] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174799] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174810] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174822] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174831] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174830] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174826] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174813] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174806] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174790] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174778] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174767] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174759] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174757] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174757] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174762] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174769] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174786] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174801] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174818] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174837] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174856] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174870] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174887] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174900] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174908] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174911] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174913] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174911] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174906] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174900] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174900] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174900] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174906] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174913] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174921] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174929] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174931] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174929] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.275820] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174927] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.306456] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174932] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.337718] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174933] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.337718] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174931] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.369570] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174929] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.337718] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174917] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.275820] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174900] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.167297] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174879] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174854] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174833] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174812] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174795] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174786] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174781] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174778] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.157974] [Flaps: 1.000000] [Data Ref: 14.174782] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: -0.049429] [Throttle:0.174198] [Flaps: 1.000000] [Data Ref: 14.174784] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.089552] [Throttle:0.208269] [Flaps: 1.000000] [Data Ref: 14.174789] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.083543] [Throttle:0.245837] [Flaps: 1.000000] [Data Ref: 14.174797] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.044116] [Throttle:0.282950] [Flaps: 1.000000] [Data Ref: 14.174801] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.319694] [Flaps: 1.000000] [Data Ref: 14.174809] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:0.356641] [Flaps: 1.000000] [Data Ref: 14.174819] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.392046] [Flaps: 1.000000] [Data Ref: 14.174840] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.427613] [Flaps: 1.000000] [Data Ref: 14.174868] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.463254] [Flaps: 1.000000] [Data Ref: 14.174910] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.498071] [Flaps: 1.000000] [Data Ref: 14.174975] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:0.534418] [Flaps: 1.000000] [Data Ref: 14.175066] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.571539] [Flaps: 1.000000] [Data Ref: 14.175189] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.606411] [Flaps: 1.000000] [Data Ref: 14.175342] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.643472] [Flaps: 1.000000] [Data Ref: 14.175547] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.684643] [Flaps: 1.000000] [Data Ref: 14.175780] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.721154] [Flaps: 1.000000] [Data Ref: 14.176028] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.757959] [Flaps: 1.000000] [Data Ref: 14.176295] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.793563] [Flaps: 1.000000] [Data Ref: 14.176558] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.825888] [Flaps: 1.000000] [Data Ref: 14.176857] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.862692] [Flaps: 1.000000] [Data Ref: 14.177193] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.898991] [Flaps: 1.000000] [Data Ref: 14.177523] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.934683] [Flaps: 1.000000] [Data Ref: 14.177846] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.972447] [Flaps: 1.000000] [Data Ref: 14.178147] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.178391] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.178493] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.178486] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.178407] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.178217] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.177869] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.177350] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.176624] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.175590] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.174371] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.172875] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.170936] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.169015] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.166526] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.163713] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.160908] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.158529] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.156050] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.154071] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.152883] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.147692] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.149332] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.151312] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.153419] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.154492] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.155202] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.155591] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.155238] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.154063] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.152240] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.149645] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.147170] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.144947] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.143305] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.143001] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.143353] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.144466] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.145544] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.146723] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.147697] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.148539] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.149609] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.150879] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.152399] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.154068] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.155909] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.157418] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.158644] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.159491] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.160178] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.161103] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.161357] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.161952] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.162996] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.163780] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.164629] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.165757] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.166863] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.167564] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.168770] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.169964] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.171517] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.173648] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.176205] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.179220] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.182887] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.186787] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.191862] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.197725] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.201995] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.206062] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.209385] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.212718] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.215959] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.219184] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.222308] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.225277] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.228292] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.231514] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.234876] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.238514] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.242719] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.247513] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.253299] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.261170] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.270127] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.280656] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.297523] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.314018] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.335806] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.363727] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.400395] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.446686] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.505524] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.578347] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.668070] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.779621] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 14.908777] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.057178] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.234199] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.438953] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.691008] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.936580] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 16.205551] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 16.500772] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 16.827271] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 17.183304] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 17.594780] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.038928] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 17.990839] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.049429] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 18.502279] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 19.033836] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 19.579391] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 0.019659] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 20.162886] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 0.015298] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 20.789112] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 21.472176] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 22.218962] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 23.007784] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: 0.011174] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 23.766960] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: 0.044116] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 24.586647] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.044116] [Yaw: 0.071784] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 25.450857] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.049429] [Yaw: 0.345627] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 26.299273] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.060399] [Yaw: 0.624629] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 27.228119] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.146987] [Yaw: 0.651513] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 28.049919] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 0.174181] [Yaw: 0.633565] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 28.931040] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.615719] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 29.776590] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.606834] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 30.524216] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 31.301218] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 32.026951] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 32.754673] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 33.408947] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 34.117760] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 34.799774] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 35.445938] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 36.084309] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 36.692585] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: 0.216596] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 37.274593] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.216596] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 37.797871] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.216596] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 38.313137] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.216596] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 38.856377] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 39.348789] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 39.875275] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 40.375000] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 40.829700] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 41.264809] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 41.648148] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.223840] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 42.035618] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.202254] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 42.416557] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.195158] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 42.736237] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.202254] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 43.047352] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: 0.202254] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 43.377117] [T/O: false ][Cruise: false ] +[Elevator: -0.174181] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 43.653828] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 43.926838] [T/O: false ][Cruise: false ] +[Elevator: -0.167297] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 44.180786] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 44.398251] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.209401] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 44.631493] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.202254] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 44.836819] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.202254] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.046165] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.195158] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.234188] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.167297] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.432079] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.160469] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.612457] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.160469] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.779888] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.120767] [Yaw: 0.589143] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 45.972443] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.054859] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 46.144348] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.049429] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 46.325573] [T/O: false ][Cruise: false ] +[Elevator: -0.019659] [Roll: 0.049429] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 46.538380] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.049429] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 46.764870] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.049429] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 46.995499] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.028969] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 47.225185] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.024224] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 47.488678] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.024224] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 47.741455] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.015298] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 48.010162] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.000981] [Yaw: 0.580336] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 48.288975] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.624629] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 48.568928] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.687705] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 48.872101] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.733485] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 49.183487] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.742711] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 49.493797] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.733485] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 49.741604] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.733485] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 50.014694] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.003875] [Yaw: 0.733485] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 50.319603] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 50.604614] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 50.931858] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 51.261253] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 51.562794] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 51.923012] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 52.259296] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 52.599861] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 52.973484] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.770527] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 53.333328] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 53.698101] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 54.052036] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.028969] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 54.414761] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.153698] [Yaw: 0.742711] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 54.779381] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.181120] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 55.137310] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.181120] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 55.507370] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.268264] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 55.907581] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.202254] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 56.276741] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.007337] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 56.626347] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.554079] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 56.983009] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.028969] [Yaw: 0.510867] [Throttle:0.971709] [Flaps: 1.000000] [Data Ref: 57.330177] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.054859] [Yaw: 0.519453] [Throttle:0.932040] [Flaps: 1.000000] [Data Ref: 57.665981] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.202254] [Yaw: 0.519453] [Throttle:0.892637] [Flaps: 1.000000] [Data Ref: 58.037811] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.468374] [Yaw: 0.502310] [Throttle:0.846700] [Flaps: 1.000000] [Data Ref: 58.434322] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.369570] [Yaw: 0.502310] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 58.823067] [T/O: false ][Cruise: false ] +[Elevator: -0.160468] [Roll: -0.253279] [Yaw: 0.519453] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 59.171726] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -0.202254] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 59.521748] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: -0.174181] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 59.905235] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.174181] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 60.338139] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.181120] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 60.710094] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.223840] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 61.072338] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.223840] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 61.416370] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.245851] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 61.795162] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.238468] [Yaw: 0.528067] [Throttle:0.805919] [Flaps: 1.000000] [Data Ref: 62.178631] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.238468] [Yaw: 0.485283] [Throttle:0.777439] [Flaps: 1.000000] [Data Ref: 62.521889] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.231131] [Yaw: 0.468375] [Throttle:0.734417] [Flaps: 1.000000] [Data Ref: 62.845043] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.231131] [Yaw: 0.459966] [Throttle:0.688978] [Flaps: 1.000000] [Data Ref: 63.206802] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.231131] [Yaw: 0.459966] [Throttle:0.641671] [Flaps: 1.000000] [Data Ref: 63.518921] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: -0.245851] [Yaw: 0.502310] [Throttle:0.598245] [Flaps: 1.000000] [Data Ref: 63.820698] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: -0.253279] [Yaw: 0.528067] [Throttle:0.555662] [Flaps: 1.000000] [Data Ref: 64.074966] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: -0.245851] [Yaw: 0.510867] [Throttle:0.512456] [Flaps: 1.000000] [Data Ref: 64.321564] [T/O: false ][Cruise: false ] +[Elevator: -0.306456] [Roll: -0.216596] [Yaw: 0.510867] [Throttle:0.468625] [Flaps: 1.000000] [Data Ref: 64.564056] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: -0.216596] [Yaw: 0.510867] [Throttle:0.423078] [Flaps: 1.000000] [Data Ref: 64.759048] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: -0.202254] [Yaw: 0.510867] [Throttle:0.378866] [Flaps: 1.000000] [Data Ref: 64.937492] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: -0.202254] [Yaw: 0.510867] [Throttle:0.338028] [Flaps: 1.000000] [Data Ref: 65.087364] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: -0.209401] [Yaw: 0.510867] [Throttle:0.293946] [Flaps: 1.000000] [Data Ref: 65.226685] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: -0.245851] [Yaw: 0.510867] [Throttle:0.247238] [Flaps: 1.000000] [Data Ref: 65.338264] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: -0.291058] [Yaw: 0.510867] [Throttle:0.203016] [Flaps: 1.000000] [Data Ref: 65.413628] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: -0.298737] [Yaw: 0.510867] [Throttle:0.159564] [Flaps: 1.000000] [Data Ref: 65.465729] [T/O: false ][Cruise: false ] +[Elevator: -0.345627] [Roll: -0.291058] [Yaw: 0.510867] [Throttle:0.113841] [Flaps: 1.000000] [Data Ref: 65.490211] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: -0.275820] [Yaw: 0.510867] [Throttle:0.070256] [Flaps: 1.000000] [Data Ref: 65.481461] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: -0.275820] [Yaw: 0.519453] [Throttle:0.026767] [Flaps: 1.000000] [Data Ref: 65.441467] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: -0.275820] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 65.355858] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.083543] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 65.225555] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.038928] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 65.050728] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.049429] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 64.830910] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.049429] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 64.546387] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.033875] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 64.232285] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.007337] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 63.861393] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 0.011174] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 63.480713] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.019659] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 63.058548] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.019659] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 62.629955] [T/O: false ][Cruise: false ] +[Elevator: -0.275820] [Roll: 0.019659] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 62.129848] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.011174] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 61.634212] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.003875] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 61.128540] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.003875] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 60.615078] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.003875] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 60.102016] [T/O: false ][Cruise: false ] +[Elevator: -0.283419] [Roll: 0.003875] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 59.621429] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.049429] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 59.113995] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.054859] [Yaw: 0.536710] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 58.556278] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.054859] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 58.051548] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.054859] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 57.508442] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.054859] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 56.964840] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.054859] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 56.395508] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.140336] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 55.772564] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.174181] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 55.084866] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 54.423935] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 53.744225] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.160469] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 53.039299] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.146987] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 52.306541] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.028969] [Yaw: 0.528067] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 51.562271] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: -0.083543] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 50.736595] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.127224] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 49.975536] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.133748] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 49.170631] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.133748] [Yaw: 0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 48.364620] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.127224] [Yaw: 0.615719] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 47.489304] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.127224] [Yaw: 0.633565] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 46.599693] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.095643] [Yaw: 0.742711] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 45.746090] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.114377] [Yaw: 0.779844] [Throttle:0.044127] [Flaps: 1.000000] [Data Ref: 44.895618] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.140336] [Yaw: 0.779844] [Throttle:0.088614] [Flaps: 1.000000] [Data Ref: 44.013355] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: -0.245851] [Yaw: 0.779844] [Throttle:0.134148] [Flaps: 1.000000] [Data Ref: 43.090790] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.345627] [Yaw: 0.761232] [Throttle:0.178358] [Flaps: 1.000000] [Data Ref: 42.211426] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.345627] [Yaw: 0.761232] [Throttle:0.220081] [Flaps: 1.000000] [Data Ref: 41.314407] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.434924] [Yaw: 0.761232] [Throttle:0.264127] [Flaps: 1.000000] [Data Ref: 40.423847] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.510867] [Yaw: 0.742711] [Throttle:0.306637] [Flaps: 1.000000] [Data Ref: 39.471630] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: -0.510867] [Yaw: 0.742711] [Throttle:0.353585] [Flaps: 1.000000] [Data Ref: 38.482990] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.485283] [Yaw: 0.733485] [Throttle:0.398126] [Flaps: 1.000000] [Data Ref: 37.555264] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.443240] [Yaw: 0.733485] [Throttle:0.440755] [Flaps: 1.000000] [Data Ref: 36.518055] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.434924] [Yaw: 0.742711] [Throttle:0.487077] [Flaps: 1.000000] [Data Ref: 35.456654] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: -0.410168] [Yaw: 0.733485] [Throttle:0.533057] [Flaps: 1.000000] [Data Ref: 34.360703] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.468374] [Yaw: 0.733485] [Throttle:0.580651] [Flaps: 1.000000] [Data Ref: 33.335953] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.468374] [Yaw: 0.733485] [Throttle:0.624872] [Flaps: 1.000000] [Data Ref: 32.279274] [T/O: false ][Cruise: false ] +[Elevator: 0.401982] [Roll: -0.476814] [Yaw: 0.733485] [Throttle:0.668043] [Flaps: 1.000000] [Data Ref: 31.261059] [T/O: false ][Cruise: false ] +[Elevator: 0.443241] [Roll: -0.468374] [Yaw: 0.733485] [Throttle:0.713347] [Flaps: 1.000000] [Data Ref: 30.129627] [T/O: false ][Cruise: false ] +[Elevator: 0.443241] [Roll: -0.418388] [Yaw: 0.733485] [Throttle:0.759684] [Flaps: 1.000000] [Data Ref: 29.049210] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: -0.202254] [Yaw: 0.724282] [Throttle:0.807679] [Flaps: 1.000000] [Data Ref: 27.937746] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.077619] [Yaw: 0.733485] [Throttle:0.853403] [Flaps: 1.000000] [Data Ref: 26.826860] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: 0.028969] [Yaw: 0.733485] [Throttle:0.899569] [Flaps: 1.000000] [Data Ref: 25.727098] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: 0.054859] [Yaw: 0.742711] [Throttle:0.946865] [Flaps: 1.000000] [Data Ref: 24.736435] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: 0.146987] [Yaw: 0.742711] [Throttle:0.990364] [Flaps: 1.000000] [Data Ref: 23.742002] [T/O: false ][Cruise: false ] +[Elevator: 0.562804] [Roll: 0.127224] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 22.755310] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: 0.024224] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 21.779383] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.011174] [Yaw: 0.761232] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 20.856892] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.361554] [Yaw: 0.845680] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 19.978813] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.660524] [Yaw: 0.922194] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 19.095333] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 0.633565] [Yaw: 0.970675] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 18.339859] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.545380] [Yaw: 0.980431] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 17.658651] [T/O: false ][Cruise: false ] +[Elevator: -0.071784] [Roll: 0.418388] [Yaw: 0.980431] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 17.056454] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.095644] [Yaw: 0.960939] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 16.531904] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.019659] [Yaw: 0.941527] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.995973] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.015298] [Yaw: 0.941527] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.534676] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.941527] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 15.143555] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.519453] [Throttle:0.993484] [Flaps: 1.000000] [Data Ref: 14.822586] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.322011] [Throttle:0.946588] [Flaps: 1.000000] [Data Ref: 14.551819] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.291058] [Throttle:0.900083] [Flaps: 1.000000] [Data Ref: 14.327744] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.015298] [Yaw: 0.275821] [Throttle:0.853358] [Flaps: 1.000000] [Data Ref: 14.141568] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.024224] [Yaw: 0.268264] [Throttle:0.806980] [Flaps: 1.000000] [Data Ref: 14.011765] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.015298] [Yaw: 0.260750] [Throttle:0.765526] [Flaps: 1.000000] [Data Ref: 13.913006] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 0.260750] [Throttle:0.725360] [Flaps: 1.000000] [Data Ref: 13.825588] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.195158] [Yaw: 0.260750] [Throttle:0.679775] [Flaps: 1.000000] [Data Ref: 13.766091] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.195158] [Yaw: 0.268264] [Throttle:0.633645] [Flaps: 1.000000] [Data Ref: 13.734157] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.188113] [Yaw: 0.268264] [Throttle:0.586636] [Flaps: 1.000000] [Data Ref: 13.734055] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.000981] [Yaw: 0.283419] [Throttle:0.538649] [Flaps: 1.000000] [Data Ref: 13.766647] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.003875] [Yaw: 0.275821] [Throttle:0.492919] [Flaps: 1.000000] [Data Ref: 13.833387] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.033875] [Yaw: 0.275821] [Throttle:0.446428] [Flaps: 1.000000] [Data Ref: 13.938376] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.038928] [Yaw: 0.275821] [Throttle:0.399121] [Flaps: 1.000000] [Data Ref: 14.080218] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: 0.133748] [Yaw: 0.275821] [Throttle:0.352009] [Flaps: 1.000000] [Data Ref: 14.246429] [T/O: false ][Cruise: false ] +[Elevator: -0.377622] [Roll: 0.195158] [Yaw: 0.275821] [Throttle:0.309238] [Flaps: 1.000000] [Data Ref: 14.409532] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 0.160469] [Yaw: 0.275821] [Throttle:0.266623] [Flaps: 1.000000] [Data Ref: 14.620655] [T/O: false ][Cruise: false ] +[Elevator: -0.369570] [Roll: -0.019659] [Yaw: 0.268264] [Throttle:0.218669] [Flaps: 1.000000] [Data Ref: 14.848738] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.011174] [Yaw: 0.260750] [Throttle:0.174549] [Flaps: 1.000000] [Data Ref: 15.054971] [T/O: false ][Cruise: false ] +[Elevator: -0.660524] [Roll: -0.322011] [Yaw: 0.245851] [Throttle:0.131909] [Flaps: 1.000000] [Data Ref: 15.292415] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.174181] [Yaw: 0.245851] [Throttle:0.087842] [Flaps: 1.000000] [Data Ref: 15.514017] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.260750] [Yaw: 0.245851] [Throttle:0.043228] [Flaps: 1.000000] [Data Ref: 15.730950] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.418388] [Yaw: 0.238469] [Throttle:0.000122] [Flaps: 1.000000] [Data Ref: 15.962075] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.003875] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.154907] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.007337] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.325026] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.007337] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.477444] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.011174] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.602940] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.703930] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.054859] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.777277] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.181120] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.829477] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.167297] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.855152] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.858309] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.377622] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.840927] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.146987] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.802843] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.077619] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.745970] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: 0.140336] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.679462] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.060399] [Yaw: 0.223840] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.590406] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 0.049429] [Yaw: 0.223840] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.495916] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: 0.000981] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.379469] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.238468] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.245655] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.275820] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 16.104887] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.314215] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.957235] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.275820] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.805476] [T/O: false ][Cruise: false ] +[Elevator: 0.283419] [Roll: -0.209401] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.627515] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.146987] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.455994] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: 0.562804] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.285507] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: 0.554079] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 15.110669] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: 0.510867] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.925801] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.291058] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.728317] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.024224] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.506389] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -0.260750] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.280760] [T/O: false ][Cruise: false ] +[Elevator: 0.120767] [Roll: -0.133748] [Yaw: 0.195158] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 14.046278] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.089552] [Yaw: 0.195158] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 13.819306] [T/O: false ][Cruise: false ] +[Elevator: 0.209401] [Roll: -0.049429] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 13.565839] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: 0.028969] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 13.293266] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: 0.083543] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 13.055739] [T/O: false ][Cruise: false ] +[Elevator: 0.314215] [Roll: 0.095644] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 12.806471] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.071784] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 12.575296] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: 0.133748] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 12.370157] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.049429] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 12.170983] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.993528] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.841917] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.028969] [Yaw: 0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.709955] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: -0.369570] [Yaw: 0.202254] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.590373] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: -0.298737] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.487518] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.007337] [Yaw: 0.238469] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.395357] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.181120] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.324379] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.260235] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.207708] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.163741] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.761232] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.126431] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.361554] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.100413] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.078066] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.058599] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.040382] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.024051] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.010051] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.996817] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.986369] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.976462] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.990206] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.968737] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.807928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.961700] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.957332] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.954676] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.953272] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.519453] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.952476] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.952060] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.951183] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.949093] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.945408] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.941087] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.936415] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.931634] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.928849] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.927091] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.925427] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.924133] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.922743] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.920893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.918835] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.916064] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.912714] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.909290] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905773] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: 0.033876] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.903189] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.562804] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900930] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899058] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897902] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.049429] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897242] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897621] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899055] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900973] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.903735] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.906612] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.909354] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.911649] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.913321] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.914324] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.060399] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.914943] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.915551] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.916685] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.918605] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.920953] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.923191] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.924724] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.925393] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.925159] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.925282] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.926172] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.007337] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.927225] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.181120] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.928658] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.929688] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.930041] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.049429] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.929726] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.033876] [Yaw: 0.066042] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.928466] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.028969] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.925574] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.306456] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.921318] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.624629] [Yaw: 0.114377] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.916330] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.642527] [Yaw: 0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.910792] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -0.000981] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905342] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.011174] [Yaw: 0.337718] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900358] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.385708] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.895706] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.054859] [Yaw: 0.589143] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.891457] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 0.855171] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.887579] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.883817] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.167297] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.880700] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.181120] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.877843] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.181120] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.875998] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.181120] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.874161] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.181120] [Yaw: 0.696814] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.872511] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.181120] [Yaw: 0.845680] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.870888] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.231131] [Yaw: 0.902942] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.868891] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.283419] [Yaw: 0.931850] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.866619] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.345627] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.864749] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.502310] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.864099] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.580336] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.864983] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.742711] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.867794] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 0.990206] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.871799] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.876830] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.881083] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.884684] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.887196] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.889189] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.890779] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.892048] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.893375] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.894605] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.895270] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.895761] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.896016] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.896458] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897100] [T/O: false ][Cruise: false ] +[Elevator: -0.127224] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897168] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897321] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897858] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.898656] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899500] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900122] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900467] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900563] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900448] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900192] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899855] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899379] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.898848] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.898272] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897739] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.896997] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.896166] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.931850] [Yaw: -0.883771] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.895205] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.571557] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.893937] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.892540] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.890867] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.889219] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.887400] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.885133] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.882207] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.879377] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.990206] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.875908] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.678620] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.872575] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.041561] [Flaps: 1.000000] [Data Ref: 10.869542] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.083558] [Flaps: 1.000000] [Data Ref: 10.866581] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.125782] [Flaps: 1.000000] [Data Ref: 10.864033] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.169537] [Flaps: 1.000000] [Data Ref: 10.861744] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.054859] [Throttle:0.213634] [Flaps: 1.000000] [Data Ref: 10.859792] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.101813] [Throttle:0.255205] [Flaps: 1.000000] [Data Ref: 10.857711] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.114377] [Throttle:0.298184] [Flaps: 1.000000] [Data Ref: 10.855907] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.133748] [Throttle:0.338221] [Flaps: 1.000000] [Data Ref: 10.854277] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.133748] [Throttle:0.381025] [Flaps: 1.000000] [Data Ref: 10.852569] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.133748] [Throttle:0.419043] [Flaps: 1.000000] [Data Ref: 10.850974] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.101813] [Throttle:0.462486] [Flaps: 1.000000] [Data Ref: 10.849498] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.504428] [Flaps: 1.000000] [Data Ref: 10.848195] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.019659] [Throttle:0.548655] [Flaps: 1.000000] [Data Ref: 10.846783] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.054859] [Throttle:0.592499] [Flaps: 1.000000] [Data Ref: 10.845570] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.636905] [Flaps: 1.000000] [Data Ref: 10.844385] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.071784] [Throttle:0.681427] [Flaps: 1.000000] [Data Ref: 10.843237] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.089552] [Throttle:0.727815] [Flaps: 1.000000] [Data Ref: 10.842161] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.101813] [Throttle:0.774537] [Flaps: 1.000000] [Data Ref: 10.841182] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.127224] [Throttle:0.819950] [Flaps: 1.000000] [Data Ref: 10.840298] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.866817] [Flaps: 1.000000] [Data Ref: 10.839564] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.910698] [Flaps: 1.000000] [Data Ref: 10.839066] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.949585] [Flaps: 1.000000] [Data Ref: 10.839141] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:0.988776] [Flaps: 1.000000] [Data Ref: 10.839212] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.133748] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.839573] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.153698] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.840326] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.209401] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.841034] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.202254] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.842165] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.843595] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.845079] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.846774] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.848814] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.851000] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.853771] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.856923] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.859614] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.862336] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.865020] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.867597] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.870589] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.873178] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.875615] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.877801] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.879578] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.881338] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.882992] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884000] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884565] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884511] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884263] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884123] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884304] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.885372] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886300] [T/O: false ][Cruise: false ] +[Elevator: -0.083543] [Roll: 0.742711] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886808] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886973] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.887007] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886421] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886110] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.885813] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.885066] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884564] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884211] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.884840] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.885190] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.885614] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.886238] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.887630] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.889458] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.101813] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.891405] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.893688] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.896198] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.899077] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.253279] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.902369] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.245851] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.906054] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.216596] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 10.909166] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.216596] [Throttle:1.000000] [Flaps: 0.999999] [Data Ref: 10.912315] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.188113] [Throttle:1.000000] [Flaps: 0.999999] [Data Ref: 10.914731] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.916594] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.153698] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.918376] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.133748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.919618] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.077619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.921069] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.923389] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.925620] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.928185] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.930785] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.933072] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.934161] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.133748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.934833] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.934716] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.007337] [Yaw: 0.066042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.933890] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.253279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.932538] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.817334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.930347] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.642527] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.928156] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.925762] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.923425] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.921082] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.919195] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.917534] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.916605] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.915845] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.915088] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.914335] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.913033] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.911152] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.907935] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.903544] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.899466] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.897141] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.678620] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.897336] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.899622] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.903082] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.283419] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.906587] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.909625] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.912044] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.913129] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.913157] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.951223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.912948] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.789183] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.911893] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.826761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.911319] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.003875] [Yaw: 0.807929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.911880] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.817334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.913116] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.817334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.914734] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.826761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.915932] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.826761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.917093] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.826761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.918194] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.174181] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.919425] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.920734] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.922154] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.923407] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.924459] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.925117] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.003875] [Yaw: -0.054859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.925304] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.925592] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.960939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.926764] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.928722] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.932067] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.936075] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.940152] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.943666] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.223840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.946803] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.451588] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.948259] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.948342] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.393828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.948900] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.949347] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.949839] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.931850] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.950871] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.952473] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.127224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.953829] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: -0.864683] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.955789] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.956306] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.956058] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.956821] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.133748] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.960843] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 10.978331] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11.022398] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11.105972] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11.263238] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11.480025] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 11.794081] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12.162411] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 12.618138] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.000981] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.215969] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.855843] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.498388] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.260313] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.049429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.965375] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.739733] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.452744] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.223263] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.933632] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.672121] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.465668] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.227095] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.029789] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.795574] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.577845] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.238869] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.030323] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.808493] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.552343] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.237196] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.933929] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.695555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.398579] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.562804] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.123898] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.545380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.855713] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.590462] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.346218] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.084526] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.842075] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.651928] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.410614] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.990206] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.198811] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.922194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.961620] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.807929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.732933] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.751960] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.570755] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.724282] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.352024] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.606834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.186874] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.606834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.073502] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.960579] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.874588] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.597975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.774189] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.314215] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.673950] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.589184] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.493538] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.415798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.437904] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.413128] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.348610] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.344555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.345272] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.361554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.362717] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.980431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.424366] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.990206] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.479847] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.651513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.535931] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.630119] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.760365] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.669560] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.862488] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.951223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.045284] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.960939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.204662] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.660524] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.368893] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.528305] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.692001] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.353572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.930130] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.166367] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.454247] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.814117] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.246994] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.575699] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.970116] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.441162] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.965462] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.517342] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.122902] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.859886] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.383858] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.930168] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.622215] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.237358] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.019684] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.943001] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.596901] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.408730] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.258362] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.007484] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.038928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.863914] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.727798] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.566017] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.468788] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.413055] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.576820] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.820183] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.847717] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.962555] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.103447] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.380707] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.593239] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.799400] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.093460] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.511566] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.115631] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.629242] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.314438] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.049454] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.966156] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.474243] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.391174] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.893829] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.770370] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.532715] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.257538] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.028969] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.883087] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.575195] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.445419] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.218872] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.823303] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.647766] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.033875] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.635269] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.426483] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: -0.089552] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.218399] [T/O: false ][Cruise: false ] +[Elevator: -0.883771] [Roll: -0.101813] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.101761] [T/O: false ][Cruise: false ] +[Elevator: -0.893346] [Roll: -0.101813] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.385208] [T/O: false ][Cruise: false ] +[Elevator: -0.864683] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.342392] [T/O: false ][Cruise: false ] +[Elevator: -0.779844] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.453262] [T/O: false ][Cruise: false ] +[Elevator: -0.779844] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.678299] [T/O: false ][Cruise: false ] +[Elevator: -0.580336] [Roll: -0.108059] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.861053] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: -0.083543] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.063202] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.049429] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.224945] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.028969] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.280518] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.000981] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.298645] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.019659] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.365372] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.133748] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.895935] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.223840] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.436707] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.766891] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.026291] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.123154] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.059891] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.937881] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.656128] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.274933] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.853561] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.422272] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.260750] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.946884] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.260750] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.313812] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.260750] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.836823] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.260750] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.061462] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.260750] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.272629] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.268264] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.401230] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.268264] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.493835] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.594833] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.597382] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.590088] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.592194] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -0.268264] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.434875] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.268264] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.277588] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.268264] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.101868] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.268264] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.941620] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: -0.268264] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.745270] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -0.275820] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.448059] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.275820] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.214935] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.275820] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.952179] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.668854] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.265259] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.822083] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.339752] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.858368] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.329041] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.260750] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.702087] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.021637] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.160468] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.305664] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.049429] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.510040] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.633942] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.675171] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.641693] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.537354] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.344421] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.019659] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.098877] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.038928] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.756683] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.326263] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.044116] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.801605] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.007337] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.132629] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.011174] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.482880] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.670807] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.044116] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.706543] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.667877] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 0.049429] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.506104] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.060399] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.200104] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.808533] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.083543] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.250992] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.095644] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.616394] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.153698] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.874481] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.174181] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.013397] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.209401] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.152649] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.209401] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.072235] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.209401] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.879318] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.209401] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.683624] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.209401] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.169220] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.202254] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.613144] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.195158] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.805542] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.195158] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.251373] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: 0.202254] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.309326] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.238469] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.204178] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.245851] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.278351] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: 0.260750] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.199371] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.275821] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.149445] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: 0.361554] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.948090] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.510867] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.821442] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.510867] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.677612] [T/O: false ][Cruise: false ] +[Elevator: 0.095644] [Roll: 0.502310] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.549240] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.345627] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.490158] [T/O: false ][Cruise: false ] +[Elevator: 0.443241] [Roll: 0.127224] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.970062] [T/O: false ][Cruise: false ] +[Elevator: 0.434925] [Roll: 0.101813] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.807526] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: 0.066042] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.579559] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.049429] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.280304] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.146987] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.380310] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.253279] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.483826] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -0.361554] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.745865] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -0.377622] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.803772] [T/O: false ][Cruise: false ] +[Elevator: 0.195158] [Roll: -0.361554] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.242844] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: -0.253279] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.906845] [T/O: false ][Cruise: false ] +[Elevator: 0.418388] [Roll: -0.245851] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.549942] [T/O: false ][Cruise: false ] +[Elevator: 0.418388] [Roll: -0.268264] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.418854] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.314215] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.550858] [T/O: false ][Cruise: false ] +[Elevator: 0.361554] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.935150] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.414719] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.329846] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.132446] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.068481] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.228104] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.643860] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.289642] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.329846] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.147400] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.219131] [T/O: false ][Cruise: false ] +[Elevator: 0.377622] [Roll: -0.337718] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.502136] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.369570] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.025497] [T/O: false ][Cruise: false ] +[Elevator: 0.329846] [Roll: -0.377622] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.685852] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.322011] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.532425] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: -0.202254] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.599396] [T/O: false ][Cruise: false ] +[Elevator: 0.536710] [Roll: -0.071784] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.798660] [T/O: false ][Cruise: false ] +[Elevator: 0.528067] [Roll: -0.071784] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.119675] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.506622] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.073746] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.657074] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.474960] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.134155] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.790161] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.469070] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: -0.066042] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.327408] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.071784] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.114960] [T/O: false ][Cruise: false ] +[Elevator: 0.528067] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.988968] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.690796] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.077619] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.279999] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.028969] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.968582] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.015298] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.528412] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: 0.353573] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.023193] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: 1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.367432] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.734375] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.836807] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.810699] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.735336] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.424271] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.980850] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.383804] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.579178] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.608963] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.471756] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.169220] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.689865] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.044205] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.117340] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.140549] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.020660] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.846100] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.461075] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.981293] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.414291] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.671783] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.996567] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.990206] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.144974] [T/O: false ][Cruise: false ] +[Elevator: -0.459966] [Roll: 0.922194] [Yaw: 0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.225769] [T/O: false ][Cruise: false ] +[Elevator: -0.536710] [Roll: 0.845680] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.582230] [T/O: false ][Cruise: false ] +[Elevator: -0.597975] [Roll: 0.807929] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.640015] [T/O: false ][Cruise: false ] +[Elevator: -0.545380] [Roll: 0.845680] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.733032] [T/O: false ][Cruise: false ] +[Elevator: -0.223840] [Roll: 0.893346] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.820343] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: 0.855171] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.943405] [T/O: false ][Cruise: false ] +[Elevator: 0.231131] [Roll: 0.817334] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.887589] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: 0.779844] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.693680] [T/O: false ][Cruise: false ] +[Elevator: 0.291058] [Roll: 0.742711] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.518463] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.733485] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.412582] [T/O: false ][Cruise: false ] +[Elevator: 0.451588] [Roll: 0.687705] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.031433] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: 0.615719] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.842422] [T/O: false ][Cruise: false ] +[Elevator: 0.562804] [Roll: 0.642527] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.649826] [T/O: false ][Cruise: false ] +[Elevator: 0.624629] [Roll: 0.696814] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.452164] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: 0.502310] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.201935] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.054859] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.067978] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.970673] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.926468] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.044116] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.137207] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.038928] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.381485] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.049429] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.829346] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.222214] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.260750] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.869888] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.015298] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.668243] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: -0.418388] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.498444] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.485283] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.455475] [T/O: false ][Cruise: false ] +[Elevator: 0.980431] [Roll: -0.493781] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.563950] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.434924] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.721985] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.418388] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.932861] [T/O: false ][Cruise: false ] +[Elevator: 0.980431] [Roll: -0.337718] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.222702] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.275820] [Yaw: -0.033875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.585602] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.283419] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.914276] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.291058] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.301125] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.195158] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.696846] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: -0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.106071] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.167297] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.574928] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.057961] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.174181] [Yaw: -0.024224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.534782] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.153698] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.006271] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.146987] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.498932] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.140336] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.055519] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.077619] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.629066] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.071784] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.264084] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.911224] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.604378] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.174181] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.386581] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.199333] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.133748] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.088608] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.053017] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.238469] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.090614] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.268264] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.201942] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.291058] [Yaw: -0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.347015] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.160469] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.525246] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.011174] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.758186] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.033875] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.981949] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.181120] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.218224] [T/O: false ][Cruise: false ] +[Elevator: 0.980431] [Roll: -0.410168] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.442497] [T/O: false ][Cruise: false ] +[Elevator: 0.836210] [Roll: -0.678620] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.616478] [T/O: false ][Cruise: false ] +[Elevator: 0.476814] [Roll: -0.941527] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.742706] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.796272] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.748718] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.588333] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.338608] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.919861] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.376213] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.658325] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.694740] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.546158] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.242798] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.910645] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.368050] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.512497] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.525551] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.039063] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -1.000000] [Yaw: 0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.738983] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -1.000000] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.448021] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -1.000000] [Yaw: 0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.223778] [T/O: false ][Cruise: false ] +[Elevator: 0.114377] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.756813] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.137810] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.816643] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.250229] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.852951] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.296738] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.830391] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: -0.883771] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.318787] [T/O: false ][Cruise: false ] +[Elevator: 0.807929] [Roll: -0.696813] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.877106] [T/O: false ][Cruise: false ] +[Elevator: 0.733485] [Roll: -0.571557] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.416008] [T/O: false ][Cruise: false ] +[Elevator: 0.651513] [Roll: -0.761232] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.328476] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.779844] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.098412] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.186432] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.007337] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.552864] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.084366] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.987053] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.039505] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.420254] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.019659] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.079052] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 0.606834] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.014507] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.183094] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.570068] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.272202] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.117271] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.172112] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: -0.011174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.393311] [T/O: false ][Cruise: false ] +[Elevator: -0.060399] [Roll: 1.000000] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.794121] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: 1.000000] [Yaw: -0.007337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.149864] [T/O: false ][Cruise: false ] +[Elevator: -0.066042] [Roll: 1.000000] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.623688] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: -0.003875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.362053] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.015298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.168594] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.028969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.932037] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.044116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.969917] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.083543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.916702] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.140336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.902290] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.105576] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.397758] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.812828] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.345589] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.016190] [T/O: false ][Cruise: false ] +[Elevator: -0.060399] [Roll: 0.951223] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.731651] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.369286] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.651513] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.037743] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.836746] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.831818] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.773232] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.759003] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.733238] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.888161] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.876839] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.860809] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.754364] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.665756] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.557312] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.978409] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.767365] [T/O: false ][Cruise: false ] +[Elevator: -0.181120] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.345169] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.870834] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.264648] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.818680] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.016525] [T/O: false ][Cruise: false ] +[Elevator: -0.231131] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.221649] [T/O: false ][Cruise: false ] +[Elevator: -0.202254] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.476471] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.787872] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.117432] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.491470] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.696182] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.845612] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.636246] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.606064] [T/O: false ][Cruise: false ] +[Elevator: 0.089552] [Roll: -1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.353683] [T/O: false ][Cruise: false ] +[Elevator: 0.687705] [Roll: -0.807928] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.190292] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.353572] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.008484] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.015298] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.688538] [T/O: false ][Cruise: false ] +[Elevator: 0.510867] [Roll: 0.874217] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.347733] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.970675] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.883362] [T/O: false ][Cruise: false ] +[Elevator: 0.202254] [Roll: 0.742711] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.411346] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.925674] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.369492] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.723114] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.161438] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.660675] [T/O: false ][Cruise: false ] +[Elevator: -0.054859] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.137115] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.747009] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.341904] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.863434] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.501038] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.081207] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.729111] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: 0.019659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.273804] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 1.000000] [Yaw: -0.000981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.813492] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.024224] [Throttle:0.993966] [Flaps: 0.000000] [Data Ref: 207.472214] [T/O: false ][Cruise: false ] +[Elevator: -0.044116] [Roll: 1.000000] [Yaw: 0.174181] [Throttle:0.954898] [Flaps: 0.000000] [Data Ref: 209.155319] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 1.000000] [Yaw: 0.181120] [Throttle:0.916233] [Flaps: 0.000000] [Data Ref: 210.784897] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 1.000000] [Yaw: 0.188113] [Throttle:0.877577] [Flaps: 0.000000] [Data Ref: 212.638123] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 1.000000] [Yaw: 0.188113] [Throttle:0.834564] [Flaps: 0.000000] [Data Ref: 214.389496] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 1.000000] [Yaw: 0.181120] [Throttle:0.796448] [Flaps: 0.000000] [Data Ref: 216.076035] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 1.000000] [Yaw: 0.181120] [Throttle:0.761036] [Flaps: 0.000000] [Data Ref: 217.863907] [T/O: false ][Cruise: false ] +[Elevator: 0.188113] [Roll: 1.000000] [Yaw: 0.153698] [Throttle:0.720321] [Flaps: 0.000000] [Data Ref: 219.836853] [T/O: false ][Cruise: false ] +[Elevator: 0.434925] [Roll: 0.970675] [Yaw: 0.146987] [Throttle:0.681045] [Flaps: 0.000000] [Data Ref: 221.772980] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: 0.902942] [Yaw: 0.140336] [Throttle:0.642057] [Flaps: 0.000000] [Data Ref: 223.721451] [T/O: false ][Cruise: false ] +[Elevator: 0.606834] [Roll: 0.826761] [Yaw: 0.133748] [Throttle:0.603403] [Flaps: 0.000000] [Data Ref: 225.860886] [T/O: false ][Cruise: false ] +[Elevator: 0.660524] [Roll: 0.779844] [Yaw: 0.153698] [Throttle:0.561863] [Flaps: 0.000000] [Data Ref: 227.939056] [T/O: false ][Cruise: false ] +[Elevator: 0.715102] [Roll: 0.742711] [Yaw: 0.174181] [Throttle:0.524667] [Flaps: 0.000000] [Data Ref: 229.941269] [T/O: false ][Cruise: false ] +[Elevator: 0.742711] [Roll: 0.733485] [Yaw: 0.468375] [Throttle:0.520749] [Flaps: 0.000000] [Data Ref: 232.153778] [T/O: false ][Cruise: false ] +[Elevator: 0.770527] [Roll: 0.696814] [Yaw: 0.418388] [Throttle:0.560944] [Flaps: 0.000000] [Data Ref: 234.439224] [T/O: false ][Cruise: false ] +[Elevator: 0.770527] [Roll: 0.696814] [Yaw: 0.385708] [Throttle:0.600628] [Flaps: 0.000000] [Data Ref: 236.919678] [T/O: false ][Cruise: false ] +[Elevator: 0.807929] [Roll: 0.624629] [Yaw: 0.361554] [Throttle:0.639724] [Flaps: 0.000000] [Data Ref: 239.418762] [T/O: false ][Cruise: false ] +[Elevator: 0.931850] [Roll: 0.443241] [Yaw: 0.337718] [Throttle:0.681843] [Flaps: 0.000000] [Data Ref: 242.323303] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.077619] [Yaw: 0.337718] [Throttle:0.721340] [Flaps: 0.000000] [Data Ref: 244.805969] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.060399] [Yaw: 0.337718] [Throttle:0.759931] [Flaps: 0.000000] [Data Ref: 247.734268] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.066042] [Yaw: 0.337718] [Throttle:0.800102] [Flaps: 0.000000] [Data Ref: 250.804382] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.181120] [Yaw: 0.337718] [Throttle:0.838696] [Flaps: 0.000000] [Data Ref: 254.018448] [T/O: false ][Cruise: false ] +[Elevator: 0.951223] [Roll: -0.361554] [Yaw: 0.337718] [Throttle:0.880821] [Flaps: 0.000000] [Data Ref: 257.517456] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.393828] [Yaw: 0.337718] [Throttle:0.920586] [Flaps: 0.000000] [Data Ref: 260.887268] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.485283] [Yaw: 0.345627] [Throttle:0.958895] [Flaps: 0.000000] [Data Ref: 264.372711] [T/O: false ][Cruise: false ] +[Elevator: 0.893346] [Roll: -0.519453] [Yaw: 0.345627] [Throttle:0.997211] [Flaps: 0.000000] [Data Ref: 268.085358] [T/O: false ][Cruise: false ] +[Elevator: 0.874217] [Roll: -0.554078] [Yaw: 0.345627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.724426] [T/O: false ][Cruise: false ] +[Elevator: 0.912558] [Roll: -0.571557] [Yaw: 0.345627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.193542] [T/O: false ][Cruise: false ] +[Elevator: 0.912558] [Roll: -0.589143] [Yaw: 0.345627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.838470] [T/O: false ][Cruise: false ] +[Elevator: 0.789183] [Roll: -0.715102] [Yaw: 0.345627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.812775] [T/O: false ][Cruise: false ] +[Elevator: 0.705946] [Roll: -0.789183] [Yaw: 0.369570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.608673] [T/O: false ][Cruise: false ] +[Elevator: 0.761232] [Roll: -0.742711] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.398743] [T/O: false ][Cruise: false ] +[Elevator: 0.836210] [Roll: -0.660524] [Yaw: 0.536710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.461609] [T/O: false ][Cruise: false ] +[Elevator: 0.836210] [Roll: -0.651513] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.387787] [T/O: false ][Cruise: false ] +[Elevator: 0.836210] [Roll: -0.651513] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.970032] [T/O: false ][Cruise: false ] +[Elevator: 0.902942] [Roll: -0.580336] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.385925] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: -0.580336] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.654541] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: -0.580336] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.874634] [T/O: false ][Cruise: false ] +[Elevator: 0.931850] [Roll: -0.580336] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.340393] [T/O: false ][Cruise: false ] +[Elevator: 0.912558] [Roll: -0.580336] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.414703] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: -0.571557] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.402344] [T/O: false ][Cruise: false ] +[Elevator: 0.941527] [Roll: -0.502310] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.257660] [T/O: false ][Cruise: false ] +[Elevator: 0.980431] [Roll: -0.353572] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.031158] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: -0.493781] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.320099] [T/O: false ][Cruise: false ] +[Elevator: 0.855171] [Roll: -0.651513] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.607849] [T/O: false ][Cruise: false ] +[Elevator: 0.580336] [Roll: -0.883771] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.776031] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -1.000000] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.715210] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -1.000000] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.694244] [T/O: false ][Cruise: false ] +[Elevator: -0.195158] [Roll: -0.216596] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.307190] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.960939] [Yaw: 0.519453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.895386] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: 1.000000] [Yaw: 0.528067] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.495361] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: 1.000000] [Yaw: 0.624629] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.982086] [T/O: false ][Cruise: false ] +[Elevator: 0.140336] [Roll: 1.000000] [Yaw: 0.696814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.232574] [T/O: false ][Cruise: false ] +[Elevator: 0.174181] [Roll: 1.000000] [Yaw: 0.114377] [Throttle:0.977348] [Flaps: 0.000000] [Data Ref: 346.422363] [T/O: false ][Cruise: false ] +[Elevator: 0.597975] [Roll: 0.789183] [Yaw: 0.095644] [Throttle:0.935818] [Flaps: 0.000000] [Data Ref: 347.383026] [T/O: false ][Cruise: false ] +[Elevator: 0.669560] [Roll: 0.751960] [Yaw: 0.089552] [Throttle:0.900076] [Flaps: 0.000000] [Data Ref: 348.161102] [T/O: false ][Cruise: false ] +[Elevator: 0.855171] [Roll: 0.562804] [Yaw: 0.089552] [Throttle:0.862797] [Flaps: 0.000000] [Data Ref: 348.868774] [T/O: false ][Cruise: false ] +[Elevator: 0.864684] [Roll: 0.562804] [Yaw: 0.089552] [Throttle:0.824443] [Flaps: 0.000000] [Data Ref: 349.377106] [T/O: false ][Cruise: false ] +[Elevator: 0.864684] [Roll: 0.562804] [Yaw: 0.083543] [Throttle:0.787537] [Flaps: 0.000000] [Data Ref: 349.765106] [T/O: false ][Cruise: false ] +[Elevator: 0.922194] [Roll: 0.393828] [Yaw: 0.089552] [Throttle:0.747363] [Flaps: 0.000000] [Data Ref: 350.029114] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.049429] [Yaw: 0.095644] [Throttle:0.705455] [Flaps: 0.000000] [Data Ref: 350.094391] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.669246] [Flaps: 0.000000] [Data Ref: 350.006165] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.101813] [Throttle:0.631378] [Flaps: 0.000000] [Data Ref: 349.757538] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.253279] [Yaw: 0.101813] [Throttle:0.594869] [Flaps: 0.000000] [Data Ref: 349.357849] [T/O: false ][Cruise: false ] +[Elevator: 0.912558] [Roll: 0.536710] [Yaw: 0.089552] [Throttle:0.554826] [Flaps: 0.000000] [Data Ref: 348.758179] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.314215] [Yaw: 0.089552] [Throttle:0.518047] [Flaps: 0.000000] [Data Ref: 348.092712] [T/O: false ][Cruise: false ] +[Elevator: 0.223840] [Roll: 0.049429] [Yaw: 0.089552] [Throttle:0.480191] [Flaps: 0.000000] [Data Ref: 347.124786] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.231131] [Yaw: 0.083543] [Throttle:0.438289] [Flaps: 0.000000] [Data Ref: 345.972717] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -0.960939] [Yaw: 0.071784] [Throttle:0.397989] [Flaps: 0.000000] [Data Ref: 344.706940] [T/O: false ][Cruise: false ] +[Elevator: 0.337718] [Roll: -0.468374] [Yaw: 0.071784] [Throttle:0.361763] [Flaps: 0.000000] [Data Ref: 343.374939] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.260750] [Yaw: 0.071784] [Throttle:0.324123] [Flaps: 0.000000] [Data Ref: 341.694183] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.223840] [Yaw: 0.066042] [Throttle:0.284533] [Flaps: 0.000000] [Data Ref: 339.924683] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.353572] [Yaw: 0.066042] [Throttle:0.248257] [Flaps: 0.000000] [Data Ref: 338.097321] [T/O: false ][Cruise: false ] +[Elevator: 0.779844] [Roll: -0.761232] [Yaw: 0.066042] [Throttle:0.210006] [Flaps: 0.000000] [Data Ref: 335.946198] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: -0.990206] [Yaw: 0.071784] [Throttle:0.173062] [Flaps: 0.000000] [Data Ref: 333.383301] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -1.000000] [Yaw: 0.054859] [Throttle:0.131189] [Flaps: 0.000000] [Data Ref: 330.824280] [T/O: false ][Cruise: false ] +[Elevator: 0.083543] [Roll: -1.000000] [Yaw: 0.077619] [Throttle:0.093304] [Flaps: 0.000000] [Data Ref: 328.018097] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.089552] [Throttle:0.054778] [Flaps: 0.000000] [Data Ref: 325.243530] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.114377] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 322.103973] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 318.920593] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 315.311615] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 310.125916] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 305.604980] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 300.839630] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 296.052032] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.015298] [Yaw: 0.003875] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 290.920959] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: 0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 285.446594] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -1.000000] [Yaw: -0.011174] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 279.362915] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 273.308044] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 267.132782] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 260.063232] [T/O: false ][Cruise: false ] +[Elevator: 0.216596] [Roll: -1.000000] [Yaw: -0.000981] [Throttle:0.023943] [Flaps: 0.000000] [Data Ref: 253.012466] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: -1.000000] [Yaw: -0.015298] [Throttle:0.005387] [Flaps: 0.000000] [Data Ref: 246.260468] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.990206] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 239.017822] [T/O: false ][Cruise: false ] +[Elevator: 0.401982] [Roll: -0.970675] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 230.604614] [T/O: false ][Cruise: false ] +[Elevator: 0.589143] [Roll: -0.845680] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 222.393845] [T/O: false ][Cruise: false ] +[Elevator: 0.724282] [Roll: -0.798545] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 214.251328] [T/O: false ][Cruise: false ] +[Elevator: 0.733485] [Roll: -0.789183] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 205.231354] [T/O: false ][Cruise: false ] +[Elevator: 0.597975] [Roll: -0.845680] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 197.749680] [T/O: false ][Cruise: false ] +[Elevator: 0.238469] [Roll: -1.000000] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 189.680664] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -1.000000] [Yaw: 0.011174] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 181.642868] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: -0.571557] [Yaw: 0.580336] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 174.796097] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.011174] [Yaw: 0.633565] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 166.780045] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.015298] [Yaw: 0.624629] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 160.002380] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.146987] [Yaw: 0.751960] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 153.494446] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.268264] [Yaw: 0.826761] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 147.230133] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.418388] [Yaw: 0.893346] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 141.033997] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.202254] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 135.345337] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.202254] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 129.729492] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.033875] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 124.673279] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.060399] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 120.145401] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.038928] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 115.215637] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.083543] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 109.742592] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.209401] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 105.354774] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -0.167297] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 101.778595] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.133748] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 97.785812] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.140336] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 94.430305] [T/O: false ][Cruise: false ] +[Elevator: 0.153698] [Roll: -0.216596] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 90.969704] [T/O: false ][Cruise: false ] +[Elevator: 0.133748] [Roll: -0.174181] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 87.695862] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.077619] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 84.825607] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.038928] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 81.897629] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.209401] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 79.057152] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.044116] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 76.671730] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.054859] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 74.427620] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.238468] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 72.162041] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.377622] [Yaw: 0.883771] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 70.161316] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.361554] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 68.564041] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: -0.167297] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 67.079124] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.223840] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 65.574585] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -0.223840] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 64.244873] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: -0.202254] [Yaw: 0.874217] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 63.210552] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.260750] [Yaw: 0.845680] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 62.228035] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: -0.329846] [Yaw: 0.855171] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 61.386887] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 0.011174] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 60.666588] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: 0.011174] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 60.017021] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.011174] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 59.406654] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.024224] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.902035] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.054859] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.479527] [T/O: false ][Cruise: false ] +[Elevator: -0.669560] [Roll: 0.275821] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 58.148510] [T/O: false ][Cruise: false ] +[Elevator: -0.770527] [Roll: 0.188113] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.891121] [T/O: false ][Cruise: false ] +[Elevator: -0.606834] [Roll: -0.060399] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.707348] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: -0.146987] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.587200] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.054859] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.501801] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.000981] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.443775] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.000981] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.377132] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.033876] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.303436] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.571557] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.193439] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.589143] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 57.063507] [T/O: false ][Cruise: false ] +[Elevator: -0.245851] [Roll: 0.231131] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.895748] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.209401] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.698059] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.216596] [Yaw: 0.696814] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.474968] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.209401] [Yaw: 0.476814] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 56.250916] [T/O: false ][Cruise: false ] +[Elevator: -0.393828] [Roll: 0.160469] [Yaw: 0.468375] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.999146] [T/O: false ][Cruise: false ] +[Elevator: -0.502310] [Roll: 0.174181] [Yaw: 0.385708] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.755585] [T/O: false ][Cruise: false ] +[Elevator: -0.580336] [Roll: 0.209401] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.520164] [T/O: false ][Cruise: false ] +[Elevator: -0.580336] [Roll: 0.245851] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.269432] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 0.642527] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 55.005894] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 1.000000] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.723343] [T/O: false ][Cruise: false ] +[Elevator: 0.275821] [Roll: 0.931850] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.422237] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: 0.696814] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 54.051689] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.007337] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.567066] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.007337] [Yaw: 0.353573] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 53.076225] [T/O: false ][Cruise: false ] +[Elevator: 0.268264] [Roll: -0.007337] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 52.455750] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.401982] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 51.731518] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: 0.434925] [Yaw: 0.337718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.966629] [T/O: false ][Cruise: false ] +[Elevator: 0.322011] [Roll: 0.260750] [Yaw: 0.337718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.225582] [T/O: false ][Cruise: false ] +[Elevator: 0.127224] [Roll: 0.826761] [Yaw: 0.337718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.541946] [T/O: false ][Cruise: false ] +[Elevator: -0.678620] [Roll: 0.443241] [Yaw: 0.337718] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.853279] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.196301] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.665527] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.000981] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.239750] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.060399] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.919693] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.443240] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.693783] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: -0.361554] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.558899] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.253279] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.517860] [T/O: false ][Cruise: false ] +[Elevator: -0.545380] [Roll: -0.369570] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.581867] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.003875] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.729641] [T/O: false ][Cruise: false ] +[Elevator: -0.528067] [Roll: -0.678620] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.949986] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.000981] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.231846] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.864683] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.512135] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.811771] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.089552] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.121593] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.140336] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.447998] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 1.000000] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.763081] [T/O: false ][Cruise: false ] +[Elevator: -0.864683] [Roll: 0.426640] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.021515] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.275776] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: 0.283419] [Yaw: 0.298737] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.531792] [T/O: false ][Cruise: false ] +[Elevator: -0.314215] [Roll: 0.019659] [Yaw: 0.298737] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.753811] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.956291] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.033875] [Yaw: 0.298737] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.124016] [T/O: false ][Cruise: false ] +[Elevator: 0.651513] [Roll: -0.807928] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.263409] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: 0.146987] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.355415] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 1.000000] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.385700] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 1.000000] [Yaw: 0.283419] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.369041] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.283419] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.300171] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 0.054859] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.207481] [T/O: false ][Cruise: false ] +[Elevator: -0.519453] [Roll: 0.361554] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 50.095253] [T/O: false ][Cruise: false ] +[Elevator: -0.133748] [Roll: -0.133748] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.986599] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.024224] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.880814] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.083543] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.785553] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.238468] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.696705] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: -0.238468] [Yaw: 0.298737] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.597733] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.120767] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.496490] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.083543] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.364365] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.127224] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 49.199295] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.209401] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.999516] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.223840] [Yaw: 0.283419] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.766979] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.268264] [Yaw: 0.275821] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.489582] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.268264] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 48.206127] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.314215] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.862370] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.385708] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.486526] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.410168] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 47.075779] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.401982] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.637707] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.401982] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 46.203911] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.401982] [Yaw: 0.268264] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.770847] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.275820] [Yaw: 0.283419] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 45.315865] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.015298] [Yaw: 0.306456] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.841469] [T/O: false ][Cruise: false ] +[Elevator: 0.007337] [Roll: -0.000981] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 44.366676] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.015298] [Yaw: 0.322011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.818295] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 43.251999] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.011174] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.698776] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.011174] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 42.116692] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.011174] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 41.489792] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: 0.044116] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.878223] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: 0.033876] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 40.291595] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 39.634727] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.979061] [T/O: false ][Cruise: false ] +[Elevator: -0.980431] [Roll: -0.322011] [Yaw: 0.361554] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 38.335255] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.000981] [Yaw: 0.345627] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.742050] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.000981] [Yaw: 0.329846] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 37.146175] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: 0.322011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.640213] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.015298] [Yaw: 0.322011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 36.157421] [T/O: false ][Cruise: false ] +[Elevator: 0.060399] [Roll: -0.038928] [Yaw: 0.322011] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.718426] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.298737] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 35.304470] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.923679] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.500515] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: 0.314215] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 34.110641] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: 0.007337] [Yaw: 0.291058] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.750530] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.412983] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 33.045406] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.697010] [T/O: false ][Cruise: false ] +[Elevator: 0.054859] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 32.298923] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.905493] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.559305] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 31.133633] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.727331] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 30.300842] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.867952] [T/O: false ][Cruise: false ] +[Elevator: 0.071784] [Roll: 0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 29.412504] [T/O: false ][Cruise: false ] +[Elevator: 0.253279] [Roll: 0.174181] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.940775] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.188113] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.461941] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: 0.089552] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 28.027191] [T/O: false ][Cruise: false ] +[Elevator: 0.459966] [Roll: 0.049429] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.552227] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 27.030323] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 26.512161] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 25.984980] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 25.505898] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 25.027475] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.033875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 24.564766] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 24.148264] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.127224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 23.743389] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.120767] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 23.377653] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 23.011494] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 22.664061] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 0.333000] [Data Ref: 22.354767] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 22.062468] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.823292] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.643196] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.522642] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.019659] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.474068] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.146987] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.493868] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.253279] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.573301] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -0.181120] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.707458] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: -0.202254] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 21.887774] [T/O: false ][Cruise: false ] +[Elevator: -0.322011] [Roll: -0.167297] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 22.126760] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: -0.089552] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 22.411699] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: -0.011174] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 22.735062] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.007337] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 23.099022] [T/O: false ][Cruise: false ] +[Elevator: -0.033875] [Roll: 0.015298] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 23.466633] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 23.880867] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 24.254665] [T/O: false ][Cruise: false ] +[Elevator: -1.000000] [Roll: 0.160469] [Yaw: 0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 24.694580] [T/O: false ][Cruise: false ] +[Elevator: -0.468374] [Roll: 0.202254] [Yaw: 0.024224] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 25.095022] [T/O: false ][Cruise: false ] +[Elevator: -0.015298] [Roll: 0.049429] [Yaw: 0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 25.504072] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.624629] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 25.924532] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.011174] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 26.359087] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: -0.015298] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 26.774292] [T/O: false ][Cruise: false ] +[Elevator: 0.146987] [Roll: -0.202254] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 27.170527] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.361554] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 27.536512] [T/O: false ][Cruise: false ] +[Elevator: 0.108059] [Roll: -0.260750] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 27.891331] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.011174] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 28.232090] [T/O: false ][Cruise: false ] +[Elevator: -0.114377] [Roll: 0.167297] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 28.563751] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.146987] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 28.890150] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 29.224695] [T/O: false ][Cruise: false ] +[Elevator: -0.120767] [Roll: 0.153698] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 29.575127] [T/O: false ][Cruise: false ] +[Elevator: -0.209401] [Roll: 0.160469] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 29.925804] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 30.314323] [T/O: false ][Cruise: false ] +[Elevator: -0.260750] [Roll: 0.089552] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 30.734674] [T/O: false ][Cruise: false ] +[Elevator: -0.253279] [Roll: 0.071784] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 31.145947] [T/O: false ][Cruise: false ] +[Elevator: -0.291058] [Roll: 0.054859] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 31.573349] [T/O: false ][Cruise: false ] +[Elevator: -0.329846] [Roll: 0.133748] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 32.071278] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.140336] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 32.542652] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.167297] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 33.057144] [T/O: false ][Cruise: false ] +[Elevator: -0.337718] [Roll: 0.167297] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 33.530956] [T/O: false ][Cruise: false ] +[Elevator: -0.353572] [Roll: 0.153698] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 33.982464] [T/O: false ][Cruise: false ] +[Elevator: -0.268264] [Roll: -0.011174] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 34.371090] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.238468] [Yaw: -0.011174] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 34.736008] [T/O: false ][Cruise: false ] +[Elevator: -0.188113] [Roll: -0.536710] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.042439] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.633565] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.279366] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -0.485283] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.461864] [T/O: false ][Cruise: false ] +[Elevator: 0.369570] [Roll: -0.369570] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.555920] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.209401] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.579861] [T/O: false ][Cruise: false ] +[Elevator: 0.545380] [Roll: -0.114377] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.512810] [T/O: false ][Cruise: false ] +[Elevator: 0.536710] [Roll: -0.077619] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.356289] [T/O: false ][Cruise: false ] +[Elevator: 0.536710] [Roll: -0.083543] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 35.107635] [T/O: false ][Cruise: false ] +[Elevator: 0.528067] [Roll: -0.153698] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 34.798725] [T/O: false ][Cruise: false ] +[Elevator: 0.485283] [Roll: -0.209401] [Yaw: -0.007337] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 34.422794] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: 0.044116] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 33.987682] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.060399] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 33.425747] [T/O: false ][Cruise: false ] +[Elevator: -0.028969] [Roll: 0.160469] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 32.842297] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: 0.451588] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 32.203827] [T/O: false ][Cruise: false ] +[Elevator: 0.817334] [Roll: 0.071784] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 31.590046] [T/O: false ][Cruise: false ] +[Elevator: 0.571557] [Roll: -0.127224] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 30.945164] [T/O: false ][Cruise: false ] +[Elevator: 0.502310] [Roll: -0.223840] [Yaw: 0.003875] [Throttle:0.005751] [Flaps: 1.000000] [Data Ref: 30.292978] [T/O: false ][Cruise: false ] +[Elevator: 0.519453] [Roll: -0.385708] [Yaw: -0.019659] [Throttle:0.050065] [Flaps: 1.000000] [Data Ref: 29.587276] [T/O: false ][Cruise: false ] +[Elevator: 0.696814] [Roll: -0.385708] [Yaw: -0.033875] [Throttle:0.094710] [Flaps: 1.000000] [Data Ref: 28.842188] [T/O: false ][Cruise: false ] +[Elevator: 0.960939] [Roll: -0.253279] [Yaw: -0.024224] [Throttle:0.137690] [Flaps: 1.000000] [Data Ref: 28.103075] [T/O: false ][Cruise: false ] +[Elevator: 0.642527] [Roll: 0.049429] [Yaw: -0.019659] [Throttle:0.184540] [Flaps: 1.000000] [Data Ref: 27.307018] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.476814] [Yaw: 0.019659] [Throttle:0.227590] [Flaps: 1.000000] [Data Ref: 26.589575] [T/O: false ][Cruise: false ] +[Elevator: 0.345627] [Roll: 0.554079] [Yaw: 0.066042] [Throttle:0.271217] [Flaps: 1.000000] [Data Ref: 25.762171] [T/O: false ][Cruise: false ] +[Elevator: 0.353573] [Roll: 0.545380] [Yaw: 0.089552] [Throttle:0.317823] [Flaps: 1.000000] [Data Ref: 24.901955] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.015298] [Yaw: 0.089552] [Throttle:0.364286] [Flaps: 1.000000] [Data Ref: 23.997849] [T/O: false ][Cruise: false ] +[Elevator: 1.000000] [Roll: -0.120767] [Yaw: 0.089552] [Throttle:0.411328] [Flaps: 1.000000] [Data Ref: 23.095165] [T/O: false ][Cruise: false ] +[Elevator: 0.306456] [Roll: 0.275821] [Yaw: 0.089552] [Throttle:0.457930] [Flaps: 1.000000] [Data Ref: 22.177723] [T/O: false ][Cruise: false ] +[Elevator: 0.589143] [Roll: 0.283419] [Yaw: 0.089552] [Throttle:0.504522] [Flaps: 1.000000] [Data Ref: 21.254559] [T/O: false ][Cruise: false ] +[Elevator: 0.696814] [Roll: 0.260750] [Yaw: 0.114377] [Throttle:0.550636] [Flaps: 1.000000] [Data Ref: 20.294395] [T/O: false ][Cruise: false ] +[Elevator: 0.401982] [Roll: 0.028969] [Yaw: 0.133748] [Throttle:0.598046] [Flaps: 1.000000] [Data Ref: 19.375223] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.146987] [Throttle:0.642239] [Flaps: 1.000000] [Data Ref: 18.481768] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.015298] [Yaw: 0.188113] [Throttle:0.679580] [Flaps: 1.000000] [Data Ref: 17.613111] [T/O: false ][Cruise: false ] +[Elevator: -0.153698] [Roll: -0.089552] [Yaw: 0.283419] [Throttle:0.644582] [Flaps: 1.000000] [Data Ref: 16.757925] [T/O: false ][Cruise: false ] +[Elevator: -0.146987] [Roll: -0.127224] [Yaw: 0.146987] [Throttle:0.598100] [Flaps: 1.000000] [Data Ref: 16.002438] [T/O: false ][Cruise: false ] +[Elevator: -0.238468] [Roll: -0.160468] [Yaw: 0.146987] [Throttle:0.553630] [Flaps: 1.000000] [Data Ref: 15.281574] [T/O: false ][Cruise: false ] +[Elevator: -0.385708] [Roll: -0.231131] [Yaw: 0.153698] [Throttle:0.506479] [Flaps: 1.000000] [Data Ref: 14.668352] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.188113] [Yaw: 0.153698] [Throttle:0.465307] [Flaps: 1.000000] [Data Ref: 14.109775] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: -0.314215] [Yaw: 0.153698] [Throttle:0.420582] [Flaps: 1.000000] [Data Ref: 13.676390] [T/O: false ][Cruise: false ] +[Elevator: 0.245851] [Roll: -0.817334] [Yaw: 0.146987] [Throttle:0.378615] [Flaps: 1.000000] [Data Ref: 13.252437] [T/O: false ][Cruise: false ] +[Elevator: 0.385708] [Roll: -0.510867] [Yaw: 0.140336] [Throttle:0.334088] [Flaps: 1.000000] [Data Ref: 12.900867] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: -0.033875] [Yaw: 0.133748] [Throttle:0.288188] [Flaps: 1.000000] [Data Ref: 12.573336] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: -0.807928] [Yaw: 0.127224] [Throttle:0.241254] [Flaps: 1.000000] [Data Ref: 12.301594] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: 0.011174] [Yaw: 0.127224] [Throttle:0.193828] [Flaps: 1.000000] [Data Ref: 12.076227] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.361554] [Yaw: 0.120767] [Throttle:0.148164] [Flaps: 1.000000] [Data Ref: 11.887836] [T/O: false ][Cruise: false ] +[Elevator: 0.000981] [Roll: -0.624629] [Yaw: 0.120767] [Throttle:0.100813] [Flaps: 1.000000] [Data Ref: 11.737613] [T/O: false ][Cruise: false ] +[Elevator: 0.003875] [Roll: -0.345627] [Yaw: 0.120767] [Throttle:0.058606] [Flaps: 1.000000] [Data Ref: 11.606697] [T/O: false ][Cruise: false ] +[Elevator: -0.007337] [Roll: -1.000000] [Yaw: 0.095644] [Throttle:0.011451] [Flaps: 1.000000] [Data Ref: 11.504249] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.181120] [Yaw: 0.108059] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.417602] [T/O: false ][Cruise: false ] +[Elevator: 0.101813] [Roll: -1.000000] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.344998] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.000981] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.281552] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.228978] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: -0.011174] [Yaw: 0.101813] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.184991] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.011174] [Yaw: 0.095644] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.146528] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.015298] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.112785] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.011174] [Yaw: 0.089552] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.081751] [T/O: false ][Cruise: false ] +[Elevator: 0.049429] [Roll: -0.146987] [Yaw: 0.071784] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.056741] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.931850] [Yaw: 0.054859] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.035637] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.003875] [Yaw: 0.028969] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.018579] [T/O: false ][Cruise: false ] +[Elevator: 0.077619] [Roll: -1.000000] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 11.005379] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.003875] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.994800] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.044116] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.985506] [T/O: false ][Cruise: false ] +[Elevator: 0.298737] [Roll: -1.000000] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.978667] [T/O: false ][Cruise: false ] +[Elevator: 0.033876] [Roll: -0.108059] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.973314] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.968585] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.962275] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.028969] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.954374] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.945330] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.937476] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.019659] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.931684] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.024224] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.926697] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.000981] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.922651] [T/O: false ][Cruise: false ] +[Elevator: 0.011174] [Roll: 0.019659] [Yaw: -0.003875] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.920298] [T/O: false ][Cruise: false ] +[Elevator: 0.066042] [Roll: -0.202254] [Yaw: -0.038928] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.918798] [T/O: false ][Cruise: false ] +[Elevator: 0.410169] [Roll: -0.960939] [Yaw: -0.195158] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917856] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.003875] [Yaw: -0.223840] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.916773] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.024224] [Yaw: -0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.914989] [T/O: false ][Cruise: false ] +[Elevator: 0.393828] [Roll: -0.990206] [Yaw: -0.268264] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.912802] [T/O: false ][Cruise: false ] +[Elevator: 0.181120] [Roll: -0.807928] [Yaw: -0.306456] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.910155] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: 0.000981] [Yaw: -0.291058] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.906812] [T/O: false ][Cruise: false ] +[Elevator: 0.044116] [Roll: -0.083543] [Yaw: -0.260750] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.903621] [T/O: false ][Cruise: false ] +[Elevator: 0.426640] [Roll: -0.980431] [Yaw: -0.253279] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.900647] [T/O: false ][Cruise: false ] +[Elevator: 0.038928] [Roll: -1.000000] [Yaw: -0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.897812] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.003875] [Yaw: -0.231131] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.895703] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: -0.231131] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.894569] [T/O: false ][Cruise: false ] +[Elevator: 0.167297] [Roll: -1.000000] [Yaw: -0.238468] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.893477] [T/O: false ][Cruise: false ] +[Elevator: 0.160469] [Roll: -1.000000] [Yaw: -0.245851] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.893431] [T/O: false ][Cruise: false ] +[Elevator: 0.028969] [Roll: -0.011174] [Yaw: -0.167297] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.893699] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.024224] [Yaw: -0.153698] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.894843] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: -0.817334] [Yaw: -0.160468] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.896797] [T/O: false ][Cruise: false ] +[Elevator: -0.011174] [Roll: 0.000981] [Yaw: -0.167297] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.899495] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 0.606834] [Yaw: -0.153698] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.902272] [T/O: false ][Cruise: false ] +[Elevator: -0.000981] [Roll: 1.000000] [Yaw: -0.231131] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905507] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: -0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.908294] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: -0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.910327] [T/O: false ][Cruise: false ] +[Elevator: -0.003875] [Roll: 1.000000] [Yaw: -0.209401] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.911838] [T/O: false ][Cruise: false ] +[Elevator: -0.024224] [Roll: 1.000000] [Yaw: -0.216596] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.912356] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 1.000000] [Yaw: -0.024224] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.912221] [T/O: false ][Cruise: false ] +[Elevator: -0.049429] [Roll: 1.000000] [Yaw: 0.459966] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.911948] [T/O: false ][Cruise: false ] +[Elevator: -0.089552] [Roll: 1.000000] [Yaw: 0.696814] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.910536] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 0.951223] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.909130] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.907578] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905976] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905030] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.904943] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.905561] [T/O: false ][Cruise: false ] +[Elevator: -0.101813] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.906913] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.908901] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.911142] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.913375] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.915156] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.916634] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917342] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917847] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917966] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917612] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 1.000000] [Throttle:0.000000] [Flaps: 1.000000] [Data Ref: 10.917242] [T/O: false ][Cruise: false ] +[Elevator: -0.108059] [Roll: 1.000000] [Yaw: 0.807929] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.916538] [T/O: false ][Cruise: false ] +[Elevator: -0.216596] [Roll: 1.000000] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.915564] [T/O: false ][Cruise: false ] +[Elevator: 0.024224] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.913900] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.911670] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.908507] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.904814] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.901154] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.897586] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.011174] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.894465] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.024224] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.891793] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.044116] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.889300] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.038928] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.887213] [T/O: false ][Cruise: false ] +[Elevator: 0.019659] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.885489] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.884047] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.028969] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.882552] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.015298] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.880759] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.003875] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.879247] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.038928] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.877985] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: -0.015298] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.876771] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.875536] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.874129] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.872514] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.871084] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.869387] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.867376] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.865652] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.863937] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.862299] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860851] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.859992] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.859303] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.858505] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.858015] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857777] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857871] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857921] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857731] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857599] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857609] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.857794] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.858126] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.858538] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.858788] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.859260] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.859733] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860155] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860210] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860590] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860974] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.861519] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.861720] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.861836] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.862210] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.862657] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.862323] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.862228] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.861649] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860945] [T/O: false ][Cruise: false ] +[Elevator: 0.015298] [Roll: 0.000981] [Yaw: 0.000981] [Throttle:0.006592] [Flaps: 1.000000] [Data Ref: 10.860134] [T/O: false ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148895] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148872] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148828] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148764] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148702] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148670] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148711] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149334] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148782] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148832] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148972] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149221] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149885] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151004] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150965] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150315] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149787] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149184] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148686] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148408] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147933] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147093] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145733] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143649] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140929] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137711] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133809] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129987] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121610] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110893] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109335] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107841] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106768] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106213] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106476] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107608] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109453] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111677] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114196] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116621] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118944] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120903] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123385] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125762] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128466] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131073] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133739] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136703] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138837] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140748] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142594] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143107] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143643] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144262] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144919] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145370] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145887] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146894] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147563] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148719] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150119] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151618] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153041] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154516] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155401] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155953] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155917] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155423] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155230] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155557] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157040] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159009] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159445] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159000] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158723] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158538] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159041] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160406] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161828] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162567] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163153] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163401] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163962] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164386] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164484] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164249] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164223] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164254] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166407] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165609] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163531] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143536] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122608] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109255] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.098031] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.085194] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.069050] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.056150] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.041680] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.030001] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.015632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.001981] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.986450] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.969523] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.954652] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.934996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.916354] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.898126] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.880106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.859478] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.841581] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.821682] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.799855] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.780275] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.762253] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.742937] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.724714] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.705543] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.685223] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.665551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.646081] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.626288] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.603406] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.581668] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.561572] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.542184] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.518866] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.499110] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.478732] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.463387] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.446709] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.428265] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.410336] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.392574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.374921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.355387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.338599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.323752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.307794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.290826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.274762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.258339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.243386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.228259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.211730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.194189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.175759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.159158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.142575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.128091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.113394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.099945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.086526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.075546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.066664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.059323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.055731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.056143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.061529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.074850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.092667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.118586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.149239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.197760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.249103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.325308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.403781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.491636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.585515] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.706758] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.838217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.983716] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.357456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.564789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.798537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.024232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.279383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.565044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.864413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.205341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.527552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.897791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.312489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.726038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.209105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.772238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.269793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.908058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.570358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.211502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.866148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.624142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.525091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.322004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.250622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.116804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.148855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.582386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.728989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.900326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.097958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.402359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.937244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.291721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.753323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.274612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.900337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.571636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.209381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.329327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.411373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.128529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.062969] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.173962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.415245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.733078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.925468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.199036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.630997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.836884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.224838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.831993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.415588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.782425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.763428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.923950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.833633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.429779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.434052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.147789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.015327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.993622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.774422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.967995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.787529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.106133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.111847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.330231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.497513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.753578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.712387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.909821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.309235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.996826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.209930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.534027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.093048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.761841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.857941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.380676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.106277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.645569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.685135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.336243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.201813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.118484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.117630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.982788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.653152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.311966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.983765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.847580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.508774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.032074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.215424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.519196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.759689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.923492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.695938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.436020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.793167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.395615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.041122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.459137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.495148] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.865570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.177490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.128647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.212891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.912170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.735901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.734589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.249390] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.175873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.971069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.325653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.959381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.316559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.979462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.285126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.097565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.562469] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.755585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.982452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.479248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.819122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.840240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.124298] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.191772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.355835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.396179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.266357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.125610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.034363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.018829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.872559] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.869202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.685303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.427094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.348907] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.262299] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.024536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.596649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.194427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.689606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.311462] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.128632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.483490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.917450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.329315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.530151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.771912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.113953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.378174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.477142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.557220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.578552] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.475952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.457886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.343292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.194489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.126709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.913971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.680023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.429474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.078705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.694946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.281860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.867157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.335266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.858246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.343445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.780823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.167206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.522339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.878601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.185974] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.506256] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.789978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.052277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.294647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.522064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.755066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.962891] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.168121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.374878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.582581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.770935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.962006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.159210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.356018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.566681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.810364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.056091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.348816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.638611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.944427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.270355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.642975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.005951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.422028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.873535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.356354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.807953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.289093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.914520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.555695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.156555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.911285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.694824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.522369] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.403656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.337830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.362396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.424622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.495636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.720612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.055023] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.406067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.782196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.322083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.734467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.226898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.723541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.133118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.728302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.251221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.916260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.366455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.992889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.552338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.199097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.131165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.916382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.730316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.509583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.573578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.573090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.437225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.424774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.349426] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.492676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.853607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.119537] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.103638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.233826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.412476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.688324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.069427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.481293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.928833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.539398] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.428741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.076843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.919952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.970795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.614075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.058411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.038361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.004761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.940735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.251038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.332062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.325684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.182495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.340210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.425629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.152100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.727692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.773743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.760712] [T/O: true ][Cruise: false ] diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/output b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/output new file mode 100644 index 0000000..69fffe8 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Model-1/src/output @@ -0,0 +1,165215 @@ +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148839] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148820] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148780] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148718] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148664] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148666] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148728] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149024] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149109] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148706] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148410] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148270] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148251] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148340] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148503] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148695] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149484] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149723] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149627] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149379] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148962] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148554] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147873] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147540] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147282] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147054] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146641] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145953] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144532] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142338] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139670] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135998] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131536] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126290] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121921] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117746] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114363] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111713] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109096] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107154] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105833] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105138] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104362] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104000] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104621] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105731] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107322] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109476] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111694] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113727] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116175] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118805] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121652] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124815] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127935] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131342] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134126] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136752] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138994] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140440] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141540] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142557] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143375] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144023] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144605] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144984] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145205] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145475] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146121] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147131] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148141] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149345] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150469] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151788] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152942] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154243] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155789] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157709] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159129] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160183] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160984] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161673] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162290] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163005] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164559] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165345] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165983] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166360] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166410] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166454] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167152] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168048] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168284] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168304] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168479] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168447] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168058] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167943] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167934] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167706] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167837] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168386] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168875] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169330] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169945] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170700] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171744] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173412] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174485] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175399] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175738] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175870] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175856] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176018] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176272] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176487] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176923] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177654] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178744] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180030] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181261] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182869] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183953] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184599] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184908] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184614] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184248] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183884] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183745] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184210] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185307] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186630] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187798] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188580] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189559] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190199] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190607] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191268] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193108] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195788] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199398] [T/O: true ][Cruise: false ] +[Elevator: 0.053624] [Roll: -0.015139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202379] [T/O: true ][Cruise: false ] +[Elevator: 0.063624] [Roll: -0.025139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203831] [T/O: true ][Cruise: false ] +[Elevator: 0.073624] [Roll: -0.035139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203757] [T/O: true ][Cruise: false ] +[Elevator: 0.083624] [Roll: -0.045139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203890] [T/O: true ][Cruise: false ] +[Elevator: 0.093624] [Roll: -0.055139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205256] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208868] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212710] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217129] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220901] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223443] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225526] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227187] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228432] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229139] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229303] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228874] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227942] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226637] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225365] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224451] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224185] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224419] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224874] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225741] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227225] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229142] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231939] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234143] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.236935] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240662] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244838] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249726] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.254274] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259291] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.265374] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.273283] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.280096] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288505] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.298827] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.313314] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.333929] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.364658] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.406896] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.456345] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.517311] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.587692] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.676081] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.788056] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.929528] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.078840] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.225211] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.411098] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.620310] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.840391] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.119480] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.392174] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.692728] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.032719] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.418245] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.796320] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.281523] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.795174] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.317463] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.935177] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.547108] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.266964] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.976227] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.720884] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.539619] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.400677] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.316494] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.267708] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.334257] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.378363] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.573751] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.797148] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.212948] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.632797] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.058399] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.613274] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.116131] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.690945] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.267113] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.878166] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.766106] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.627537] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.562218] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.536045] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.629044] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.038456] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.426769] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.637356] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.132420] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.484505] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.036888] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.790092] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.359573] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.240913] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.861008] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.419983] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.150917] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.041771] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.754005] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.744576] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.396553] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.385147] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.403893] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.436020] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.877396] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.835793] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.991425] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.093910] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.251991] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.449203] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.699249] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.919876] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.065414] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.457489] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.908401] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.557785] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.829315] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.653198] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.137756] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.712845] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.988998] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.877304] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.644089] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.418518] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.113297] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.660507] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.062180] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.907486] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.534546] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.046387] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.957108] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.622787] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.062454] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.481537] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.103745] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.366470] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.905853] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.282623] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.856781] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.278183] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.918732] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.826599] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.727844] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.229416] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.565201] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.878296] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.480591] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.308838] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.970184] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.048065] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.020325] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.509979] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.634918] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.645905] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.471436] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.632446] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.666779] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.436493] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.214752] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.814484] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.556854] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.381500] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.050232] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.789307] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.423401] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.827454] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.678925] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.955109] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.392395] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.798218] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.142242] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.449646] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.699738] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.832245] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.933258] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.903442] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.990204] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.029846] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.837799] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.763885] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.605652] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.366913] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.123901] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.778778] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.495270] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.012543] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.559753] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.119995] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.627350] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.168396] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.718292] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.988037] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.356812] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.698730] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.922760] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.050476] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.075989] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.198486] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.364868] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.380829] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.257996] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.203857] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.004364] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.854248] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.681366] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.471985] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.310242] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.964996] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.747467] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.343323] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.027161] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.607178] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.208740] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.719757] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.204132] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.638336] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.048004] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.452911] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.788940] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.098969] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.352753] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.577728] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.777435] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.948059] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.091248] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.220795] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.313507] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.392151] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.467133] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.525208] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.571106] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.612305] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.645782] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.677887] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.363028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.706207] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.736725] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.774017] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.814941] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.872223] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.935394] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.010498] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.114014] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.226318] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.353668] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.492798] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.689117] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.871857] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.077698] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.324707] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.574280] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.873505] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.164093] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.520050] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.889160] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.328278] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.758057] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.254822] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.720978] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.229431] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.791992] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.412201] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.999023] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.711182] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.438232] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.160370] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.949829] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.851593] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.712952] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.602905] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.579010] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.665405] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.650452] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.796448] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.871918] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.057373] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.272491] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.746490] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.080353] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.657562] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.045685] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.696442] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.404938] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.991547] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.795410] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.448639] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.408630] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.388641] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.171478] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.293732] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.432617] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.267029] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.621796] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.947052] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.958832] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.052582] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.334351] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.785095] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.893219] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.358582] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.640045] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.854095] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.303955] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.807892] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.557068] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.865356] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.661499] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.017334] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.498352] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.363028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.278778] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.393028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.781738] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.423028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.552490] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.453028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.419342] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.423028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.365173] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.393028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.349579] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.363028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.344818] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.038483] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.207825] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.948059] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.081909] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.703033] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.731537] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.867676] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.781250] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.620483] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.763611] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.637817] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.667725] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.616211] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.896362] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.076721] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.201782] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.229614] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.388000] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.362244] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.641113] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.603149] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.669556] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.376526] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.311890] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.596741] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.719177] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.496277] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.504517] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.612000] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.506972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.818970] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.001038] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.181458] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.210510] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.096252] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.860535] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.024048] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.658691] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.636230] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.382813] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.098694] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.008728] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.770691] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.418518] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.935974] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.628906] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.098999] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.663574] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.336914] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.738525] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.358093] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.254578] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.846619] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.193420] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.440918] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.717834] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.175598] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.580933] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.772034] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.327209] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.668335] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.867004] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.956116] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.010071] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.220581] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.150879] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.185608] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.126831] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.199280] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.218079] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.081360] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.979126] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.745483] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.627197] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.321106] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.105591] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.875427] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.357788] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.075928] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.478027] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.168945] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.613953] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.002136] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.251404] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.601990] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.846985] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.084473] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.363037] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.476746] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.730042] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.842712] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.890930] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.015137] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.018555] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.075562] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.125183] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.053467] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.097839] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.061707] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.850647] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.774780] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.552673] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.430176] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.227600] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.038757] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.707214] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.377747] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.109924] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.737305] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.413025] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.074829] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.706055] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.273376] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.923340] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.469543] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.981934] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.481812] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.954346] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.435181] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.907349] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.335266] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.818909] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.264404] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.718750] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.190979] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.595886] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.024109] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.471924] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.896301] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.276062] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.683960] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.078613] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.546448] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.914246] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.315125] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.702026] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.120728] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.498352] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.890076] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.307800] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.737366] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.160645] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.581482] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.022156] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.486023] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.959534] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.427612] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.922485] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.433289] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.982727] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.470215] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.051575] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.636658] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.241211] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.822083] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.469727] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.120728] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.826782] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.597717] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.298584] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.158752] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.008057] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.807739] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.646118] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.632629] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.479004] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.402466] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.357788] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.275208] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.341125] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.295715] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.375305] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.420776] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.533508] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.639038] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.787476] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.061401] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.468140] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.778137] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.223083] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.541138] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.476972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.206299] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.446972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.689697] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.416972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.439880] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.386972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.918091] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.711853] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.339600] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.014832] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.797668] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.510010] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.626465] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.430664] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.324829] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.180908] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.032166] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.246948] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.499207] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.762573] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.958191] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.118652] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.319397] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.700928] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.636841] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.999634] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.270081] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.280396] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.459412] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.579956] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.734070] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.363028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.711365] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.393028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.969788] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.363028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.286743] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.155139] [Yaw: -0.333028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.499390] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.145139] [Yaw: -0.303028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.691711] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.135139] [Yaw: -0.273028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.991272] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.125139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.333130] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.850342] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.443176] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.886963] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.598877] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.246765] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.901672] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.654785] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.084045] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.623230] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.074402] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.653809] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.220886] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.755798] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.374817] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.705872] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.328308] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.772278] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.398621] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.967285] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.491577] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.047241] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.788269] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.700134] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.551331] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.345764] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.027893] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.775391] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.479858] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.115479] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.622192] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.403748] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.843140] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.446899] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.007751] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.154861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.688904] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.144861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.284302] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.134861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.991577] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.124861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.543823] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.201050] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.104861] [Yaw: 0.356972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.710693] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.094861] [Yaw: 0.326972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.446106] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.084861] [Yaw: 0.296972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.081909] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.074861] [Yaw: 0.266972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.669739] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.064861] [Yaw: 0.236972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.149841] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.054861] [Yaw: 0.206972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.713928] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: 0.176972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.360413] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.034861] [Yaw: 0.146972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.044250] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.024861] [Yaw: 0.116972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.461121] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: 0.086972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.075806] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: 0.004861] [Yaw: 0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.715515] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.005139] [Yaw: 0.026972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.192261] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.015139] [Yaw: -0.003028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.673096] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.025139] [Yaw: -0.033028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.259949] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.035139] [Yaw: -0.063028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.497253] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.045139] [Yaw: -0.093028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.830505] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.055139] [Yaw: -0.123028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.100281] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.065139] [Yaw: -0.153028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.469238] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.075139] [Yaw: -0.183028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.927795] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.323303] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.095139] [Yaw: -0.243028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.546326] [T/O: true ][Cruise: false ] +[Elevator: 0.103624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.657898] [T/O: true ][Cruise: false ] +[Elevator: 0.093624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.618347] [T/O: false ][Cruise: true ] +[Elevator: 0.083624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.649170] [T/O: false ][Cruise: true ] +[Elevator: 0.073624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.853760] [T/O: false ][Cruise: true ] +[Elevator: 0.063624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.089783] [T/O: false ][Cruise: true ] +[Elevator: 0.053624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.212891] [T/O: false ][Cruise: true ] +[Elevator: 0.043624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.342590] [T/O: false ][Cruise: true ] +[Elevator: 0.033624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.369690] [T/O: false ][Cruise: true ] +[Elevator: 0.023624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.537537] [T/O: false ][Cruise: true ] +[Elevator: 0.013624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.283936] [T/O: false ][Cruise: true ] +[Elevator: 0.003624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.478149] [T/O: false ][Cruise: true ] +[Elevator: -0.006376] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.536987] [T/O: false ][Cruise: true ] +[Elevator: -0.016376] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.578369] [T/O: false ][Cruise: true ] +[Elevator: -0.026376] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.591553] [T/O: false ][Cruise: true ] +[Elevator: -0.036376] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.647583] [T/O: false ][Cruise: true ] +[Elevator: -0.046376] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.559448] [T/O: false ][Cruise: true ] +[Elevator: -0.056376] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.575806] [T/O: false ][Cruise: true ] +[Elevator: -0.066376] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.317261] [T/O: false ][Cruise: true ] +[Elevator: -0.076376] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.081055] [T/O: false ][Cruise: true ] +[Elevator: -0.086376] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.794556] [T/O: false ][Cruise: true ] +[Elevator: -0.096376] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.244385] [T/O: false ][Cruise: true ] +[Elevator: -0.106376] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.476318] [T/O: false ][Cruise: true ] +[Elevator: -0.116376] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.778076] [T/O: false ][Cruise: true ] +[Elevator: -0.126376] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.927979] [T/O: false ][Cruise: true ] +[Elevator: -0.136376] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.047974] [T/O: false ][Cruise: true ] +[Elevator: -0.146376] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.177612] [T/O: false ][Cruise: true ] +[Elevator: -0.156376] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.152954] [T/O: false ][Cruise: true ] +[Elevator: -0.166376] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.130859] [T/O: false ][Cruise: true ] +[Elevator: -0.176376] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.082642] [T/O: false ][Cruise: true ] +[Elevator: -0.186376] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.000000] [T/O: false ][Cruise: true ] +[Elevator: -0.196376] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.735474] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.385864] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.865356] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.334106] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.680908] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.958740] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.136475] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.204712] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.046875] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.808228] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.021362] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.457275] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.825195] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.014160] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.142944] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.187866] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.111450] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.077637] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.912964] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.589844] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.193359] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.738403] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.096313] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.277588] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.528076] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.630249] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.571533] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.527100] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.507690] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.251709] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.965454] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.496399] [T/O: false ][Cruise: true ] +[Elevator: -0.196376] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.706238] [T/O: false ][Cruise: true ] +[Elevator: -0.186376] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.214417] [T/O: false ][Cruise: true ] +[Elevator: -0.176376] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.434875] [T/O: false ][Cruise: true ] +[Elevator: -0.166376] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.613647] [T/O: false ][Cruise: true ] +[Elevator: -0.156376] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.467896] [T/O: false ][Cruise: true ] +[Elevator: -0.146376] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.430420] [T/O: false ][Cruise: true ] +[Elevator: -0.136376] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.323975] [T/O: false ][Cruise: true ] +[Elevator: -0.126376] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.953552] [T/O: false ][Cruise: true ] +[Elevator: -0.116376] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.114990] [T/O: false ][Cruise: true ] +[Elevator: -0.106376] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.989136] [T/O: false ][Cruise: true ] +[Elevator: -0.096376] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.199707] [T/O: false ][Cruise: true ] +[Elevator: -0.086376] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.201477] [T/O: false ][Cruise: true ] +[Elevator: -0.076376] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.165161] [T/O: false ][Cruise: true ] +[Elevator: -0.066376] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.437927] [T/O: false ][Cruise: true ] +[Elevator: -0.056376] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.722900] [T/O: false ][Cruise: true ] +[Elevator: -0.046376] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.923950] [T/O: false ][Cruise: true ] +[Elevator: -0.036376] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.072815] [T/O: false ][Cruise: true ] +[Elevator: -0.026376] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.064392] [T/O: false ][Cruise: true ] +[Elevator: -0.016376] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.821045] [T/O: false ][Cruise: true ] +[Elevator: -0.006376] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.776306] [T/O: false ][Cruise: true ] +[Elevator: 0.003624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.774109] [T/O: false ][Cruise: true ] +[Elevator: 0.013624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.965942] [T/O: false ][Cruise: true ] +[Elevator: 0.023624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.184753] [T/O: false ][Cruise: true ] +[Elevator: 0.033624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.911926] [T/O: false ][Cruise: true ] +[Elevator: 0.043624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.089661] [T/O: false ][Cruise: true ] +[Elevator: 0.053624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.063624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.828979] [T/O: false ][Cruise: true ] +[Elevator: 0.073624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.455261] [T/O: false ][Cruise: true ] +[Elevator: 0.083624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.059998] [T/O: false ][Cruise: true ] +[Elevator: 0.093624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.935974] [T/O: false ][Cruise: true ] +[Elevator: 0.103624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.649963] [T/O: false ][Cruise: true ] +[Elevator: 0.113624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.760193] [T/O: false ][Cruise: true ] +[Elevator: 0.123624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.754700] [T/O: false ][Cruise: true ] +[Elevator: 0.133624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.340149] [T/O: false ][Cruise: true ] +[Elevator: 0.143624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.763428] [T/O: false ][Cruise: true ] +[Elevator: 0.153624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.820435] [T/O: false ][Cruise: true ] +[Elevator: 0.163624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.186035] [T/O: false ][Cruise: true ] +[Elevator: 0.173624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.732178] [T/O: false ][Cruise: true ] +[Elevator: 0.183624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.545837] [T/O: false ][Cruise: true ] +[Elevator: 0.193624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.515015] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.627319] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.954163] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.483276] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.143250] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.095093] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.122559] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.331116] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.817078] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.597107] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.654114] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.999817] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.535583] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.373718] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.523621] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.808960] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.462219] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.396057] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.599976] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.143921] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.882263] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.949219] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.294495] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.871704] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.691833] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.468323] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.549622] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.740234] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.268127] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.499084] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.041992] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.589905] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.201599] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.091858] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.973083] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.130310] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.438599] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.691467] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.417847] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.760559] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.796082] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.813538] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.523010] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.162292] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.975586] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.662842] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.669067] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.043457] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.779175] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.974976] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.935425] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.830811] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.600220] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.541138] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.501709] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.963623] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.965820] [T/O: false ][Cruise: true ] +[Elevator: 0.193624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.387939] [T/O: false ][Cruise: true ] +[Elevator: 0.183624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.397827] [T/O: false ][Cruise: true ] +[Elevator: 0.173624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.482788] [T/O: false ][Cruise: true ] +[Elevator: 0.163624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.295776] [T/O: false ][Cruise: true ] +[Elevator: 0.153624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.898193] [T/O: false ][Cruise: true ] +[Elevator: 0.143624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.867798] [T/O: false ][Cruise: true ] +[Elevator: 0.133624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.998291] [T/O: false ][Cruise: true ] +[Elevator: 0.123624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.708740] [T/O: false ][Cruise: true ] +[Elevator: 0.113624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.507935] [T/O: false ][Cruise: true ] +[Elevator: 0.103624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.871338] [T/O: false ][Cruise: true ] +[Elevator: 0.093624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.663330] [T/O: false ][Cruise: true ] +[Elevator: 0.083624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.766235] [T/O: false ][Cruise: true ] +[Elevator: 0.073624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.130981] [T/O: false ][Cruise: true ] +[Elevator: 0.063624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.311890] [T/O: false ][Cruise: true ] +[Elevator: 0.053624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.189087] [T/O: false ][Cruise: true ] +[Elevator: 0.043624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.199585] [T/O: false ][Cruise: true ] +[Elevator: 0.033624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.016602] [T/O: false ][Cruise: true ] +[Elevator: 0.023624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.096924] [T/O: false ][Cruise: true ] +[Elevator: 0.013624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.854614] [T/O: false ][Cruise: true ] +[Elevator: 0.003624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.756470] [T/O: false ][Cruise: true ] +[Elevator: -0.006376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.634644] [T/O: false ][Cruise: true ] +[Elevator: -0.016376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.234131] [T/O: false ][Cruise: true ] +[Elevator: -0.026376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.386108] [T/O: false ][Cruise: true ] +[Elevator: -0.036376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.839233] [T/O: false ][Cruise: true ] +[Elevator: -0.046376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.450317] [T/O: false ][Cruise: true ] +[Elevator: -0.056376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.735474] [T/O: false ][Cruise: true ] +[Elevator: -0.066376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.931030] [T/O: false ][Cruise: true ] +[Elevator: -0.076376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.914307] [T/O: false ][Cruise: true ] +[Elevator: -0.086376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.751953] [T/O: false ][Cruise: true ] +[Elevator: -0.096376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.318481] [T/O: false ][Cruise: true ] +[Elevator: -0.106376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.849487] [T/O: false ][Cruise: true ] +[Elevator: -0.116376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.271729] [T/O: false ][Cruise: true ] +[Elevator: -0.126376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.529053] [T/O: false ][Cruise: true ] +[Elevator: -0.136376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.459351] [T/O: false ][Cruise: true ] +[Elevator: -0.146376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.061646] [T/O: false ][Cruise: true ] +[Elevator: -0.156376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.470215] [T/O: false ][Cruise: true ] +[Elevator: -0.166376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.159424] [T/O: false ][Cruise: true ] +[Elevator: -0.176376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.657227] [T/O: false ][Cruise: true ] +[Elevator: -0.186376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.810913] [T/O: false ][Cruise: true ] +[Elevator: -0.196376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.885132] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.928589] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.854736] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.615845] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.138916] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.857056] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.259766] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.638672] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.744385] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.697998] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.365601] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.882202] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.331909] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.576538] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.667236] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.567017] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.357300] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.984863] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.461426] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.662720] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.832642] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.906006] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.771362] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.481934] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.044678] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.383057] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.575806] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.620605] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.475220] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.092041] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.496582] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.704834] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.718750] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.493896] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.239258] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.858154] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.264526] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.423340] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.444702] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.485474] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.598511] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.588501] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.513428] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.125488] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.367188] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.926270] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.174438] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.204102] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.658691] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.756104] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.579468] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.212158] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.664917] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.898560] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.001343] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.623291] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.166870] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.232178] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.992432] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.782471] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.480591] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.809937] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.042725] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.998291] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.900879] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.889160] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.673462] [T/O: false ][Cruise: true ] +[Elevator: -0.196376] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.858032] [T/O: false ][Cruise: true ] +[Elevator: -0.186376] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.130615] [T/O: false ][Cruise: true ] +[Elevator: -0.176376] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.011719] [T/O: false ][Cruise: true ] +[Elevator: -0.166376] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.575317] [T/O: false ][Cruise: true ] +[Elevator: -0.156376] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.147583] [T/O: false ][Cruise: true ] +[Elevator: -0.146376] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.288330] [T/O: false ][Cruise: true ] +[Elevator: -0.136376] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.124146] [T/O: false ][Cruise: true ] +[Elevator: -0.126376] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.242432] [T/O: false ][Cruise: true ] +[Elevator: -0.116376] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.133911] [T/O: false ][Cruise: true ] +[Elevator: -0.106376] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.144409] [T/O: false ][Cruise: true ] +[Elevator: -0.096376] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.695801] [T/O: false ][Cruise: true ] +[Elevator: -0.086376] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.173340] [T/O: false ][Cruise: true ] +[Elevator: -0.076376] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.447754] [T/O: false ][Cruise: true ] +[Elevator: -0.066376] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.606079] [T/O: false ][Cruise: true ] +[Elevator: -0.056376] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.612793] [T/O: false ][Cruise: true ] +[Elevator: -0.046376] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.413330] [T/O: false ][Cruise: true ] +[Elevator: -0.036376] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.371460] [T/O: false ][Cruise: true ] +[Elevator: -0.026376] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.977295] [T/O: false ][Cruise: true ] +[Elevator: -0.016376] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.625977] [T/O: false ][Cruise: true ] +[Elevator: -0.006376] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.412476] [T/O: false ][Cruise: true ] +[Elevator: 0.003624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.400757] [T/O: false ][Cruise: true ] +[Elevator: 0.013624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.330078] [T/O: false ][Cruise: true ] +[Elevator: 0.023624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.647949] [T/O: false ][Cruise: true ] +[Elevator: 0.033624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.912842] [T/O: false ][Cruise: true ] +[Elevator: 0.043624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.720520] [T/O: false ][Cruise: true ] +[Elevator: 0.053624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.597168] [T/O: false ][Cruise: true ] +[Elevator: 0.063624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.481934] [T/O: false ][Cruise: true ] +[Elevator: 0.073624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.647095] [T/O: false ][Cruise: true ] +[Elevator: 0.083624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.837646] [T/O: false ][Cruise: true ] +[Elevator: 0.093624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.258240] [T/O: false ][Cruise: true ] +[Elevator: 0.103624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.576904] [T/O: false ][Cruise: true ] +[Elevator: 0.113624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.653320] [T/O: false ][Cruise: true ] +[Elevator: 0.123624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.237732] [T/O: false ][Cruise: true ] +[Elevator: 0.133624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.825012] [T/O: false ][Cruise: true ] +[Elevator: 0.143624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.531006] [T/O: false ][Cruise: true ] +[Elevator: 0.153624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.637024] [T/O: false ][Cruise: true ] +[Elevator: 0.163624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.504700] [T/O: false ][Cruise: true ] +[Elevator: 0.173624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.729614] [T/O: false ][Cruise: true ] +[Elevator: 0.183624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.263550] [T/O: false ][Cruise: true ] +[Elevator: 0.193624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.729492] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.703979] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.767883] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.744080] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.275513] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.949463] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.514587] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.142944] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.145325] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.343445] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.394836] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.976257] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.290527] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.855225] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.965637] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.287048] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.160400] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.504028] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.385559] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.751709] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.644165] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.023743] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.884827] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.219238] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.026489] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.209778] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.778870] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.937927] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.619080] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.745056] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.004333] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.110535] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.581909] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.419800] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.146973] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.700317] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.181030] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.158447] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.388672] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.925598] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.371094] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.632813] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.633484] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.392822] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.136414] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.299866] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.166870] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.516602] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.669312] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.904175] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.576599] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.592285] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.399231] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.662781] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.647705] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.379150] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.758179] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.670654] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.372070] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.694214] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.923218] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.155139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.923584] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.145139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.778320] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.135139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.374268] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.125139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.802368] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.115139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.207275] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.105139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.031860] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.095139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.836426] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.085139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.497314] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.075139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.934692] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.065139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.450806] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.055139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.019653] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.045139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.970947] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.035139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.454956] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.025139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.503418] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.015139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.670410] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: -0.005139] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.717041] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.004861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.684937] [T/O: false ][Cruise: true ] +[Elevator: 0.203624] [Roll: 0.014861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.480347] [T/O: false ][Cruise: true ] +[Elevator: 0.193624] [Roll: 0.024861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.213135] [T/O: false ][Cruise: true ] +[Elevator: 0.183624] [Roll: 0.034861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.833618] [T/O: false ][Cruise: true ] +[Elevator: 0.173624] [Roll: 0.044861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.585571] [T/O: false ][Cruise: true ] +[Elevator: 0.163624] [Roll: 0.054861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.962646] [T/O: false ][Cruise: true ] +[Elevator: 0.153624] [Roll: 0.064861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.178955] [T/O: false ][Cruise: true ] +[Elevator: 0.143624] [Roll: 0.074861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.215454] [T/O: false ][Cruise: true ] +[Elevator: 0.133624] [Roll: 0.084861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.030029] [T/O: false ][Cruise: true ] +[Elevator: 0.123624] [Roll: 0.094861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.727783] [T/O: false ][Cruise: true ] +[Elevator: 0.113624] [Roll: 0.104861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.443115] [T/O: false ][Cruise: true ] +[Elevator: 0.103624] [Roll: 0.114861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.098267] [T/O: false ][Cruise: true ] +[Elevator: 0.093624] [Roll: 0.124861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.736206] [T/O: false ][Cruise: true ] +[Elevator: 0.083624] [Roll: 0.134861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.012329] [T/O: false ][Cruise: true ] +[Elevator: 0.073624] [Roll: 0.144861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.096069] [T/O: false ][Cruise: true ] +[Elevator: 0.063624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.053624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.043624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.033624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.023624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.013624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.003624] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.006376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.016376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.026376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.036376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.046376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.056376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.066376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.076376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.086376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.096376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.106376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.116376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.126376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.136376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.146376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.156376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.166376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.176376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.186376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.196376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.206376] [Roll: 0.154861] [Yaw: -0.213028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.003922] [Roll: 0.003922] [Yaw: 0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.199337] [Flaps: 0.000000] [Data Ref: 14.148796] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148342] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149619] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147988] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144313] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125098] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107022] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.032062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105814] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.198075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.228075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.258075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.288075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.318075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.348075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.378075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.408075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.438075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.468075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.498075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.528075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117680] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.309801] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117166] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.303689] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116638] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.296928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116054] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.291023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115508] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.286462] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114995] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.281346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114488] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.276321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113989] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.271396] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113519] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.265727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113087] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.259742] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112586] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.253129] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112100] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.247010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111664] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.241009] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111216] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.234987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110760] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.228783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110269] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.221734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109770] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.214713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109370] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.207868] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108790] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.191516] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106949] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.159035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105271] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.128506] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104781] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.100593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104327] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.071332] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104854] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.036202] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105659] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.007731] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106947] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109209] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111412] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114969] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118739] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123377] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128038] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.132973] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137363] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141242] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143365] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145293] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146331] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146911] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147381] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147760] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148163] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148695] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149225] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149451] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149659] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149384] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148530] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148381] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148275] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148360] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148442] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148724] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149018] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148989] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148716] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148692] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148686] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148742] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148795] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148819] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148829] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148674] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148867] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148467] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149320] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147052] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139360] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116806] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104854] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.096821] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108956] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.247697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121632] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.409673] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136904] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143735] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143989] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144123] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144253] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144392] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144522] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144668] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144820] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144930] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144979] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145209] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145446] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146209] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147285] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148233] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148993] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149868] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151326] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152832] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154487] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156098] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157588] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159011] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160278] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161031] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161707] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162523] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163439] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164358] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165283] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165992] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166219] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166503] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167067] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167669] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167954] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168238] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168293] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168277] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168174] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168017] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167953] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167987] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168072] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168582] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169077] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169685] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170303] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171322] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172653] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173799] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174659] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175594] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175746] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175848] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176059] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176277] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176667] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177060] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178035] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179118] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.475730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180439] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.445151] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182078] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.416992] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183420] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.380334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184294] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.343905] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184815] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.312014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184588] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.278330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184352] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.246427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184083] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.213782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183802] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.180512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184595] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.147022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185489] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.117723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186500] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.091061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187720] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.058169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188816] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.022559] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189707] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.014834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190571] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.049211] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191486] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.079015] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192317] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.107255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195109] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198075] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.145162] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200583] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.127982] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202676] [T/O: true ][Cruise: false ] +[Elevator: 0.065205] [Roll: -0.025989] [Yaw: -0.093120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203984] [T/O: true ][Cruise: false ] +[Elevator: 0.074896] [Roll: -0.035680] [Yaw: -0.065124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204295] [T/O: true ][Cruise: false ] +[Elevator: 0.082545] [Roll: -0.043522] [Yaw: -0.034525] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205349] [T/O: true ][Cruise: false ] +[Elevator: 0.090581] [Roll: -0.059016] [Yaw: -0.003153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208863] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.066692] [Yaw: 0.027552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212680] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072738] [Yaw: 0.065912] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217156] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063726] [Yaw: 0.099020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220980] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.052697] [Yaw: 0.125978] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223529] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039112] [Yaw: 0.161198] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225829] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.030222] [Yaw: 0.196761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227433] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.015817] [Yaw: 0.231110] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228660] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004824] [Yaw: 0.266978] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229100] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004161] [Yaw: 0.238257] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228651] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013823] [Yaw: 0.203726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228012] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028701] [Yaw: 0.171471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226803] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033063] [Yaw: 0.136173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225613] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030649] [Yaw: 0.104131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224961] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038804] [Yaw: 0.076158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224285] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047647] [Yaw: 0.040786] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224646] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062905] [Yaw: 0.003602] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225143] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073262] [Yaw: -0.030302] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226542] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082088] [Yaw: -0.065607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228280] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073793] [Yaw: -0.093063] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.230521] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.065433] [Yaw: -0.124035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.233077] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049209] [Yaw: -0.145854] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.236259] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041050] [Yaw: -0.113219] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240027] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032655] [Yaw: -0.082278] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243517] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.022254] [Yaw: -0.056272] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.248655] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007923] [Yaw: -0.019926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.253656] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000669] [Yaw: 0.014440] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.259250] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008657] [Yaw: 0.046393] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.265156] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.022000] [Yaw: 0.079294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.271920] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032790] [Yaw: 0.106212] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.280787] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.029199] [Yaw: 0.138107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.291151] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.014066] [Yaw: 0.171868] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.306811] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004062] [Yaw: 0.144535] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.323721] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.013686] [Yaw: 0.110843] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.354917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028335] [Yaw: 0.086658] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.387682] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.037284] [Yaw: 0.050862] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.436720] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.048722] [Yaw: 0.016281] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.492414] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062572] [Yaw: -0.018916] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.569332] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062694] [Yaw: -0.051184] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.662563] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.048089] [Yaw: -0.082769] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.766717] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.037221] [Yaw: -0.113862] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.902030] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.045674] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028076] [Yaw: -0.150441] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.233969] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003701] [Yaw: -0.152060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.410625] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.003946] [Yaw: -0.121472] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.661961] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.014667] [Yaw: -0.085842] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.914114] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029317] [Yaw: -0.059204] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.204155] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036809] [Yaw: -0.029235] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.498827] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044546] [Yaw: 0.001713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.832317] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.052931] [Yaw: 0.031352] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.241047] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068489] [Yaw: 0.066111] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.681664] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076684] [Yaw: 0.096717] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.215187] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.088658] [Yaw: 0.126336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.768398] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102092] [Yaw: 0.161310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.391184] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109642] [Yaw: 0.191510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.981596] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109842] [Yaw: 0.192311] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.699932] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100925] [Yaw: 0.156641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.450844] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.087164] [Yaw: 0.123347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.233578] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076480] [Yaw: 0.096106] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.087091] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067844] [Yaw: 0.063533] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.951088] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.052223] [Yaw: 0.029936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.934111] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043796] [Yaw: -0.001285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.031393] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.034347] [Yaw: -0.039083] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.201933] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.025525] [Yaw: -0.069555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.421398] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.010054] [Yaw: -0.097041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.762302] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.001775] [Yaw: -0.130154] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.119099] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.006648] [Yaw: -0.163847] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.646030] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.018663] [Yaw: -0.170518] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.216888] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031554] [Yaw: -0.136529] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.716412] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039986] [Yaw: -0.102800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.362392] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053102] [Yaw: -0.075249] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.082153] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.070029] [Yaw: -0.021846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.001892] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080273] [Yaw: 0.019133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.916744] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.096237] [Yaw: 0.055220] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.010265] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.105900] [Yaw: 0.090250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.247990] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.114338] [Yaw: 0.111887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.612835] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126418] [Yaw: 0.080498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.060661] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140944] [Yaw: 0.044068] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.467640] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.148839] [Yaw: 0.012485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.084797] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.148901] [Yaw: -0.020081] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.669586] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140543] [Yaw: -0.053513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.443558] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126914] [Yaw: -0.082178] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.219894] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115874] [Yaw: -0.112973] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.076103] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.107494] [Yaw: -0.146495] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.134567] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.099088] [Yaw: -0.180117] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.055214] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.083839] [Yaw: -0.212714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.162674] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075072] [Yaw: -0.237530] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.300316] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.058490] [Yaw: -0.238715] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.442886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042799] [Yaw: -0.214334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.713837] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034045] [Yaw: -0.179319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.640869] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.020038] [Yaw: -0.138116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.742226] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007946] [Yaw: -0.106293] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.241692] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.001018] [Yaw: -0.075379] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.567490] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008447] [Yaw: -0.048565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.889214] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.019978] [Yaw: -0.018867] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029978] [Yaw: 0.011133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039978] [Yaw: 0.041133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049978] [Yaw: 0.071133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.059978] [Yaw: 0.101133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069978] [Yaw: 0.131133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079978] [Yaw: 0.161133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089978] [Yaw: 0.191133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099978] [Yaw: 0.221133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109978] [Yaw: 0.251133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.119978] [Yaw: 0.281133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.129978] [Yaw: 0.311133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139978] [Yaw: 0.341133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149978] [Yaw: 0.371133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.401133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.431133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.461133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.491133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 105.276421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.159978] [Yaw: 0.521133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.628891] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032555] [Yaw: 0.016493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.239311] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040490] [Yaw: 0.048234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.593674] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.057889] [Yaw: 0.093244] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.099220] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071826] [Yaw: 0.134361] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.735275] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079983] [Yaw: 0.166989] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.140594] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.093270] [Yaw: 0.198304] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.259979] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.104314] [Yaw: 0.232941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.034790] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.112390] [Yaw: 0.265246] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.686996] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120444] [Yaw: 0.290744] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.704422] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.136370] [Yaw: 0.323720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.783234] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145200] [Yaw: 0.357272] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.568817] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152819] [Yaw: 0.387745] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.444855] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.414805] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.410965] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.382273] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.251450] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.349280] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.376816] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.316233] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.655945] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149359] [Yaw: 0.283371] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.477875] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139112] [Yaw: 0.246642] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.846512] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117292] [Yaw: 0.185980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.917313] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106115] [Yaw: 0.206914] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.748703] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098261] [Yaw: 0.238331] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.946472] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081908] [Yaw: 0.271923] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.950836] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073950] [Yaw: 0.296359] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.126328] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062787] [Yaw: 0.333250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.134995] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048984] [Yaw: 0.364849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.994949] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040690] [Yaw: 0.398024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.753998] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032962] [Yaw: 0.426603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.473145] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.023116] [Yaw: 0.451808] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.238678] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009313] [Yaw: 0.484316] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.158386] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000607] [Yaw: 0.492624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.261108] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008694] [Yaw: 0.455419] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.062225] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.021960] [Yaw: 0.427845] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.921173] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032467] [Yaw: 0.399545] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.514893] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040364] [Yaw: 0.367955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.389694] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.052873] [Yaw: 0.337392] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.147003] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064772] [Yaw: 0.301698] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.127716] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073278] [Yaw: 0.274285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.103348] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081806] [Yaw: 0.241405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.820236] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098078] [Yaw: 0.207688] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.340393] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.105899] [Yaw: 0.176403] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.166779] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115009] [Yaw: 0.139964] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.758484] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.125016] [Yaw: 0.108554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.360016] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.139404] [Yaw: 0.081599] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.855011] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.148143] [Yaw: 0.046643] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.980988] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.013999] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.414093] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.017697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.618774] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.050763] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.743225] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.148982] [Yaw: -0.094377] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.962921] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140751] [Yaw: -0.138958] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.235962] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126117] [Yaw: -0.175218] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.540894] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115421] [Yaw: -0.208904] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.357300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108090] [Yaw: -0.193144] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.345032] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100150] [Yaw: -0.161386] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.287506] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.086023] [Yaw: -0.128908] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.909882] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.076638] [Yaw: -0.098707] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.806610] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.068598] [Yaw: -0.072461] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.437561] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060974] [Yaw: -0.043894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.264648] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.044860] [Yaw: -0.007366] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.815521] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036204] [Yaw: 0.023812] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.341644] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027961] [Yaw: 0.056783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.736298] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011563] [Yaw: 0.090801] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.310089] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.002656] [Yaw: 0.118787] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.834412] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008859] [Yaw: 0.158266] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.350281] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029255] [Yaw: 0.215060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.471771] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037380] [Yaw: 0.247559] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.718353] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045319] [Yaw: 0.277134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.013397] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.055882] [Yaw: 0.286765] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.161194] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069241] [Yaw: 0.260293] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.068146] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076829] [Yaw: 0.229941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.920746] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085999] [Yaw: 0.200551] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.926697] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100589] [Yaw: 0.166273] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.787720] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108095] [Yaw: 0.136248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.483124] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116069] [Yaw: 0.106694] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.243439] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.128558] [Yaw: 0.071558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.017181] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.147728] [Yaw: 0.016932] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.580627] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.013563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.041931] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.027659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.527710] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.003085] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.901917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.033297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.302155] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.067826] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.095716] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.970123] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.121336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.203522] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.148652] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.393524] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.178369] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.464569] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.206131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.579895] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.234346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.573822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.264249] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.501678] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.147659] [Yaw: 0.286434] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.542877] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139150] [Yaw: 0.317910] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.556610] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.123849] [Yaw: 0.352303] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.604553] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.113768] [Yaw: 0.388065] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.440704] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.105321] [Yaw: 0.421293] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.279083] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.097470] [Yaw: 0.444275] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.046967] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.083064] [Yaw: 0.473089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.786346] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075232] [Yaw: 0.446027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.515350] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066669] [Yaw: 0.419616] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.262268] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050695] [Yaw: 0.387093] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.912445] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.042105] [Yaw: 0.352735] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.547363] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033350] [Yaw: 0.317715] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.113892] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.023421] [Yaw: 0.288073] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.658386] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008948] [Yaw: 0.259323] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.182465] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000159] [Yaw: 0.224166] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.660980] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007949] [Yaw: 0.191734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.066040] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.020400] [Yaw: 0.159200] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.449921] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032168] [Yaw: 0.126230] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.773102] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039983] [Yaw: 0.099659] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.101898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053323] [Yaw: 0.069825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.360413] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064635] [Yaw: 0.035576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.607605] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072716] [Yaw: 0.003253] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.809479] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080984] [Yaw: -0.029817] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.970520] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.096297] [Yaw: -0.063183] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.127228] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104532] [Yaw: -0.086146] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.230499] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.111573] [Yaw: -0.112959] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.336212] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119175] [Yaw: -0.143366] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.413116] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.131424] [Yaw: -0.172651] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.485992] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143533] [Yaw: -0.209427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.554016] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152724] [Yaw: -0.238563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.594818] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.274274] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.636414] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.306135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.665649] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.335848] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.698425] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151248] [Yaw: -0.357933] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.736206] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142963] [Yaw: -0.324792] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.770172] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.132733] [Yaw: -0.292916] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.821289] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119333] [Yaw: -0.261646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.879730] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110951] [Yaw: -0.230892] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.959320] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101895] [Yaw: -0.199736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.056122] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.090904] [Yaw: -0.170043] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.155640] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075249] [Yaw: -0.124524] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.299622] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062232] [Yaw: -0.076893] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.431702] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.049684] [Yaw: -0.048388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.628998] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043137] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.845245] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.029263] [Yaw: 0.020203] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.099670] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.013106] [Yaw: 0.056140] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.365021] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004387] [Yaw: 0.088336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.668823] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.003892] [Yaw: 0.058942] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.014618] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.012777] [Yaw: 0.025427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.373779] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029045] [Yaw: -0.010297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.793732] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037312] [Yaw: -0.043366] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.203888] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045560] [Yaw: -0.073935] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.699707] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.057590] [Yaw: -0.103415] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.296051] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072448] [Yaw: -0.098442] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.926208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081185] [Yaw: -0.070170] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.532440] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098212] [Yaw: -0.034604] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.242828] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.107094] [Yaw: 0.000925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.968414] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115616] [Yaw: 0.035011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.750946] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.126874] [Yaw: 0.069434] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.516052] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139606] [Yaw: 0.097250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.272949] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.147918] [Yaw: 0.125005] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.305420] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.162376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.287720] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.214483] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.384613] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.259784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.547546] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.291214] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.869843] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144436] [Yaw: 0.328138] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.092102] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134796] [Yaw: 0.361780] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.408356] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.119441] [Yaw: 0.379723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.758881] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110189] [Yaw: 0.342717] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.285645] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101638] [Yaw: 0.308513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.752991] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089586] [Yaw: 0.281438] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.182587] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078227] [Yaw: 0.254086] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.637299] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070246] [Yaw: 0.222161] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.353027] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056207] [Yaw: 0.186923] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.251465] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044885] [Yaw: 0.152088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.037628] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036046] [Yaw: 0.116735] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.117889] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.026969] [Yaw: 0.089233] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.833923] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.012059] [Yaw: 0.059413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.755402] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004645] [Yaw: 0.030343] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.648163] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003211] [Yaw: -0.001079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.669983] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011061] [Yaw: -0.032480] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.898743] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027074] [Yaw: -0.065913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.183136] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036809] [Yaw: -0.094236] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.558044] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.058824] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.970032] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.061027] [Yaw: -0.144129] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.144135] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069831] [Yaw: -0.110493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.545685] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.088275] [Yaw: -0.054823] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.383209] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102953] [Yaw: -0.015641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.933899] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.111476] [Yaw: -0.026297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.540863] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119463] [Yaw: -0.058244] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.138489] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.133640] [Yaw: -0.084773] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.109558] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144323] [Yaw: -0.118468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.290710] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.157085] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.485779] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.193660] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.397217] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.225183] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.419525] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.255534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.573486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.290496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.697144] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.141254] [Yaw: -0.348710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.994537] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.122366] [Yaw: -0.394485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.281982] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112988] [Yaw: -0.422557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.621887] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.103690] [Yaw: -0.442211] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.197540] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.090685] [Yaw: -0.408577] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.435486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.077554] [Yaw: -0.376883] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.600464] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069249] [Yaw: -0.343663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.104095] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059649] [Yaw: -0.305265] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.661530] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042245] [Yaw: -0.267020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.905365] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034226] [Yaw: -0.236011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.419525] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.022710] [Yaw: -0.206204] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.079681] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008736] [Yaw: -0.172198] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.821960] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000674] [Yaw: -0.134557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.212708] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009559] [Yaw: -0.099018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.956909] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.025162] [Yaw: -0.070100] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.276306] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.034031] [Yaw: -0.040349] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.760376] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.042648] [Yaw: -0.005879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.525940] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066658] [Yaw: 0.058801] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.423767] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076136] [Yaw: 0.095075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.888489] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085917] [Yaw: 0.120855] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.364807] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099902] [Yaw: 0.152550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.565369] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.107971] [Yaw: 0.184827] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.979736] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116298] [Yaw: 0.218133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.685608] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.128342] [Yaw: 0.252762] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.101624] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.140747] [Yaw: 0.281064] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.194580] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148667] [Yaw: 0.308393] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.595886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.340734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.992493] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.373572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.665771] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.408704] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.045593] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.436214] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.367615] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.469082] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.915894] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.504092] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.156860] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.691406] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144660] [Yaw: 0.472759] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.033997] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134523] [Yaw: 0.439040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.669861] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116365] [Yaw: 0.398793] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.998901] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102634] [Yaw: 0.343870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.563049] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089797] [Yaw: 0.309005] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.541199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.077913] [Yaw: 0.280798] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.095703] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068806] [Yaw: 0.247773] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.089844] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.055713] [Yaw: 0.217309] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.258606] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044727] [Yaw: 0.182829] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.501160] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035959] [Yaw: 0.147756] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.788025] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027115] [Yaw: 0.113222] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.025085] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.010944] [Yaw: 0.086913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.299866] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.002173] [Yaw: 0.051828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.384705] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008981] [Yaw: 0.013960] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.055786] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.029262] [Yaw: -0.028050] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.086914] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.037797] [Yaw: 0.006091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.021423] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.048998] [Yaw: 0.039173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.110474] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062204] [Yaw: 0.072346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.648071] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069827] [Yaw: 0.099676] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.716919] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.078467] [Yaw: 0.129556] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.522705] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.091439] [Yaw: 0.163269] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.295288] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102690] [Yaw: 0.195072] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.924988] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110747] [Yaw: 0.227300] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.510620] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.118782] [Yaw: 0.259442] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.071533] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.132363] [Yaw: 0.286780] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.697876] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143674] [Yaw: 0.274861] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.449585] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152399] [Yaw: 0.212178] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.096497] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.176730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.565857] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.145095] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.002258] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.113316] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.410095] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.086508] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.778259] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151760] [Yaw: 0.054099] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.045959] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143173] [Yaw: 0.019750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.229065] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.132741] [Yaw: -0.012950] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.388184] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.116250] [Yaw: -0.053909] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.620911] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102684] [Yaw: -0.102990] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.750916] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.089604] [Yaw: -0.138440] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.067932] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.076346] [Yaw: -0.176970] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.083252] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067701] [Yaw: -0.211551] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.930115] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059733] [Yaw: -0.236488] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.750061] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.044032] [Yaw: -0.217029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.609436] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034954] [Yaw: -0.182954] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.456421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024280] [Yaw: -0.146599] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.219910] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009531] [Yaw: -0.112633] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.863953] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001099] [Yaw: -0.081728] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.374573] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007013] [Yaw: -0.054300] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.002075] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.022729] [Yaw: -0.006057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.509033] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039865] [Yaw: 0.045736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.065247] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047968] [Yaw: 0.078145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.539124] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.061701] [Yaw: 0.106278] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.900208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072128] [Yaw: 0.135570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.146362] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079990] [Yaw: 0.167018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.448486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.094523] [Yaw: 0.200811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.713318] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110496] [Yaw: 0.257669] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.914978] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120818] [Yaw: 0.291865] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.166199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.137239] [Yaw: 0.325458] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.205139] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144821] [Yaw: 0.355755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.289551] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.391887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.443970] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.412009] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.457886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.380665] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.437805] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.347341] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.348999] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.312601] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.329224] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.279889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.208618] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.248142] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.118164] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.146250] [Yaw: 0.212452] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.892517] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.138672] [Yaw: 0.182139] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.571167] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117408] [Yaw: 0.123546] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.376648] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106045] [Yaw: 0.144449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.122131] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.096165] [Yaw: 0.180219] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.771057] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082087] [Yaw: 0.208908] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.452026] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073424] [Yaw: 0.243558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.116150] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062845] [Yaw: 0.276321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.726013] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049086] [Yaw: 0.301697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.298706] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041487] [Yaw: 0.332091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.887878] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032681] [Yaw: 0.367314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.493225] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.021415] [Yaw: 0.400308] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.017883] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004949] [Yaw: 0.443465] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.504700] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.006535] [Yaw: 0.464057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.968262] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.016856] [Yaw: 0.435500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.507446] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031184] [Yaw: 0.404676] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.013428] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.038773] [Yaw: 0.374319] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.514648] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.051647] [Yaw: 0.339844] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.014648] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062816] [Yaw: 0.309520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.469910] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.070515] [Yaw: 0.282574] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.945435] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.079259] [Yaw: 0.251593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.458191] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.093630] [Yaw: 0.216661] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.935791] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104107] [Yaw: 0.183573] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.340332] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.111349] [Yaw: 0.154605] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.794434] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.130235] [Yaw: 0.106575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.236877] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143481] [Yaw: 0.065290] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.741028] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152733] [Yaw: 0.028286] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.233643] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.007532] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.729309] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150492] [Yaw: -0.045089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.203735] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142396] [Yaw: -0.074773] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.687805] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.129103] [Yaw: -0.106500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.156921] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.116983] [Yaw: -0.139911] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.674072] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108196] [Yaw: -0.130824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.199646] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.099252] [Yaw: -0.095047] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.737122] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.082912] [Yaw: -0.067506] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.295044] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074250] [Yaw: -0.034254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.896179] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064432] [Yaw: 0.005017] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.466797] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053218] [Yaw: 0.038661] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.022705] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040395] [Yaw: 0.069794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.660156] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024964] [Yaw: 0.114300] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.351135] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007859] [Yaw: 0.160720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.043396] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000130] [Yaw: 0.191635] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.769165] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008536] [Yaw: 0.226302] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.537048] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.020952] [Yaw: 0.220842] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.298950] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032430] [Yaw: 0.187927] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.123657] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040236] [Yaw: 0.156703] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.929565] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048886] [Yaw: 0.122103] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.877136] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.064627] [Yaw: 0.093256] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.898804] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081130] [Yaw: 0.032345] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.844482] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.096836] [Yaw: -0.001516] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.794434] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.105228] [Yaw: -0.032675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.837097] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.113094] [Yaw: -0.006447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.945374] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.121396] [Yaw: 0.026759] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.099182] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.137906] [Yaw: 0.061426] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.305359] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.146808] [Yaw: 0.102164] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.553162] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.152320] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.818054] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.188002] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.124634] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.219603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.483643] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.253971] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.897217] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.281712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.294800] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.323785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.709351] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149219] [Yaw: 0.371753] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.278992] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.140798] [Yaw: 0.405436] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.801819] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.127200] [Yaw: 0.434690] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.370117] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117193] [Yaw: 0.460641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.957458] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108846] [Yaw: 0.454993] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.609619] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100920] [Yaw: 0.428250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.446838] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085251] [Yaw: 0.394032] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.456604] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075288] [Yaw: 0.359976] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.516418] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066813] [Yaw: 0.326075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.498230] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050675] [Yaw: 0.293201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.629944] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041405] [Yaw: 0.263658] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.832581] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033054] [Yaw: 0.230254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.035461] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.018107] [Yaw: 0.182927] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.339844] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000128] [Yaw: 0.128900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.327820] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008161] [Yaw: 0.101008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.635742] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.021764] [Yaw: 0.070197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.777710] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032737] [Yaw: 0.037679] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.940735] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039962] [Yaw: 0.008778] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.236877] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053972] [Yaw: -0.025592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.686157] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064289] [Yaw: -0.057155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.165283] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073765] [Yaw: -0.087961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.563660] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.082054] [Yaw: -0.120372] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.160461] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.099317] [Yaw: -0.158051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.163208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108023] [Yaw: -0.192876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.880493] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117148] [Yaw: -0.225953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.721069] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.129923] [Yaw: -0.255925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.040955] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.141758] [Yaw: -0.288599] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.758728] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150468] [Yaw: -0.344921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.399109] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.387565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.070984] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.370894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.582764] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.340090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.298279] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146855] [Yaw: -0.308987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.118774] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.138371] [Yaw: -0.275051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.081299] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115168] [Yaw: -0.219053] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.045776] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106551] [Yaw: -0.186989] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.756470] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098150] [Yaw: -0.153385] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.812256] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081713] [Yaw: -0.119010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.589417] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074270] [Yaw: -0.089476] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.145508] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.066037] [Yaw: -0.064149] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.253845] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.057054] [Yaw: -0.031755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.278198] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042143] [Yaw: 0.000055] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.231689] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033833] [Yaw: 0.033297] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.327209] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.020540] [Yaw: 0.040395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.665710] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000308] [Yaw: -0.018377] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.598999] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007408] [Yaw: -0.049240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.589355] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.018975] [Yaw: -0.077482] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.753113] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031791] [Yaw: -0.107556] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.927429] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039785] [Yaw: -0.139534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.951538] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.057306] [Yaw: -0.190725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.274231] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071788] [Yaw: -0.231050] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.190430] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079601] [Yaw: -0.223942] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.291626] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.092277] [Yaw: -0.195839] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.754150] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.104177] [Yaw: -0.159762] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.962280] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.112855] [Yaw: -0.125049] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.261963] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.121081] [Yaw: -0.092147] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.433960] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.137125] [Yaw: -0.066862] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.462952] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145086] [Yaw: -0.035342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.527954] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.029512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.592896] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.062305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.648560] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.093396] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.854126] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.120535] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.081421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.155515] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.253113] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.188473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.615906] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145312] [Yaw: 0.238360] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.612793] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.129728] [Yaw: 0.281879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.579773] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116991] [Yaw: 0.312429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.706665] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109024] [Yaw: 0.344296] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.562073] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100225] [Yaw: 0.334234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.804810] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.084327] [Yaw: 0.298067] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.864319] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074912] [Yaw: 0.271795] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.130127] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.065172] [Yaw: 0.236225] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.429199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049129] [Yaw: 0.200438] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.617371] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039717] [Yaw: 0.162789] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.732300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030856] [Yaw: 0.127344] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.427490] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.018310] [Yaw: 0.100014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.564575] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005525] [Yaw: 0.065238] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.914795] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011633] [Yaw: -0.003395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.850281] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028127] [Yaw: -0.037996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.463379] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036579] [Yaw: -0.070521] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.510132] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.048925] [Yaw: -0.101772] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.682129] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063474] [Yaw: -0.140170] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.483826] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072385] [Yaw: -0.175814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.128113] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081271] [Yaw: -0.211358] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.736206] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101211] [Yaw: -0.229699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.477478] [T/O: true ][Cruise: false ] +[Elevator: 0.097787] [Roll: -0.109930] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.135559] [T/O: false ][Cruise: true ] +[Elevator: 0.084880] [Roll: -0.119042] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.664490] [T/O: false ][Cruise: true ] +[Elevator: 0.076717] [Roll: -0.132841] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.710022] [T/O: false ][Cruise: true ] +[Elevator: 0.068825] [Roll: -0.142940] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.205139] [T/O: false ][Cruise: true ] +[Elevator: 0.053686] [Roll: -0.151588] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.577271] [T/O: false ][Cruise: true ] +[Elevator: 0.043454] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.877197] [T/O: false ][Cruise: true ] +[Elevator: 0.035095] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.087158] [T/O: false ][Cruise: true ] +[Elevator: 0.025606] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.271240] [T/O: false ][Cruise: true ] +[Elevator: 0.010623] [Roll: -0.151800] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.459900] [T/O: false ][Cruise: true ] +[Elevator: 0.002529] [Roll: -0.143705] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.572998] [T/O: false ][Cruise: true ] +[Elevator: -0.007044] [Roll: -0.134132] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.603516] [T/O: false ][Cruise: true ] +[Elevator: -0.020379] [Roll: -0.120797] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.596191] [T/O: false ][Cruise: true ] +[Elevator: -0.029169] [Roll: -0.112008] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.038187] [Roll: -0.102990] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.739990] [T/O: false ][Cruise: true ] +[Elevator: -0.051018] [Roll: -0.090159] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.767334] [T/O: false ][Cruise: true ] +[Elevator: -0.062902] [Roll: -0.078275] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.523560] [T/O: false ][Cruise: true ] +[Elevator: -0.070954] [Roll: -0.070223] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.300049] [T/O: false ][Cruise: true ] +[Elevator: -0.083486] [Roll: -0.062178] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.888916] [T/O: false ][Cruise: true ] +[Elevator: -0.094292] [Roll: -0.050632] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.423950] [T/O: false ][Cruise: true ] +[Elevator: -0.102627] [Roll: -0.038550] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.959473] [T/O: false ][Cruise: true ] +[Elevator: -0.111504] [Roll: -0.029673] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.423706] [T/O: false ][Cruise: true ] +[Elevator: -0.126906] [Roll: -0.014271] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.878662] [T/O: false ][Cruise: true ] +[Elevator: -0.144163] [Roll: 0.002987] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.222412] [T/O: false ][Cruise: true ] +[Elevator: -0.154713] [Roll: 0.013537] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.331299] [T/O: false ][Cruise: true ] +[Elevator: -0.169655] [Roll: 0.028478] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.439575] [T/O: false ][Cruise: true ] +[Elevator: -0.178190] [Roll: 0.037013] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.334961] [T/O: false ][Cruise: true ] +[Elevator: -0.186925] [Roll: 0.044443] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.229980] [T/O: false ][Cruise: true ] +[Elevator: -0.201362] [Roll: 0.053704] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.963989] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.069076] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.672729] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.077124] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.183594] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.087694] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.590332] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.101123] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.915405] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.109364] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.076538] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.118088] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.183960] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.131307] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.033936] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.143386] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.899170] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.150872] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.503540] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.008301] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.245239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.356934] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.231445] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.148688] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.034180] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.139966] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.709229] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.126733] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.258179] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.109235] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.707275] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.099100] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.815918] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.082300] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.795654] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.072890] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.461426] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.061749] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.503784] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.048514] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.963379] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.035770] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.384033] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.018075] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.672852] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.006595] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.058350] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.002073] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.307739] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.009623] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.251282] [T/O: false ][Cruise: true ] +[Elevator: -0.200878] [Roll: -0.025694] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.786926] [T/O: false ][Cruise: true ] +[Elevator: -0.183495] [Roll: -0.036113] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.161987] [T/O: false ][Cruise: true ] +[Elevator: -0.170070] [Roll: -0.049537] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.783508] [T/O: false ][Cruise: true ] +[Elevator: -0.151038] [Roll: -0.068570] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.346863] [T/O: false ][Cruise: true ] +[Elevator: -0.143468] [Roll: -0.076140] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.833496] [T/O: false ][Cruise: true ] +[Elevator: -0.135131] [Roll: -0.086602] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.710083] [T/O: false ][Cruise: true ] +[Elevator: -0.124076] [Roll: -0.100707] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.839050] [T/O: false ][Cruise: true ] +[Elevator: -0.110536] [Roll: -0.109072] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.694214] [T/O: false ][Cruise: true ] +[Elevator: -0.101989] [Roll: -0.117619] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.381409] [T/O: false ][Cruise: true ] +[Elevator: -0.093194] [Roll: -0.131260] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.046387] [T/O: false ][Cruise: true ] +[Elevator: -0.078383] [Roll: -0.143162] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.613831] [T/O: false ][Cruise: true ] +[Elevator: -0.068491] [Roll: -0.151117] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.281982] [T/O: false ][Cruise: true ] +[Elevator: -0.060373] [Roll: -0.146648] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.491943] [T/O: false ][Cruise: true ] +[Elevator: -0.036590] [Roll: -0.122865] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.804871] [T/O: false ][Cruise: true ] +[Elevator: -0.026293] [Roll: -0.112568] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.981995] [T/O: false ][Cruise: true ] +[Elevator: -0.015350] [Roll: -0.103753] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.194153] [T/O: false ][Cruise: true ] +[Elevator: -0.000243] [Roll: -0.090682] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.451782] [T/O: false ][Cruise: true ] +[Elevator: 0.008542] [Roll: -0.077733] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.068542] [T/O: false ][Cruise: true ] +[Elevator: 0.020896] [Roll: -0.069944] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.619568] [T/O: false ][Cruise: true ] +[Elevator: 0.032351] [Roll: -0.061767] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.972717] [T/O: false ][Cruise: true ] +[Elevator: 0.041516] [Roll: -0.046381] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.140198] [T/O: false ][Cruise: true ] +[Elevator: 0.050240] [Roll: -0.036035] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.707886] [T/O: false ][Cruise: true ] +[Elevator: 0.066912] [Roll: -0.026961] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.074796] [Roll: -0.011479] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.355408] [T/O: false ][Cruise: true ] +[Elevator: 0.085559] [Roll: -0.001784] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.091003] [T/O: false ][Cruise: true ] +[Elevator: 0.108265] [Roll: 0.016529] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.982544] [T/O: false ][Cruise: true ] +[Elevator: 0.117289] [Roll: 0.031014] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.059998] [T/O: false ][Cruise: true ] +[Elevator: 0.129019] [Roll: 0.039019] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.804688] [T/O: false ][Cruise: true ] +[Elevator: 0.141509] [Roll: 0.047391] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.070923] [T/O: false ][Cruise: true ] +[Elevator: 0.150650] [Roll: 0.062085] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.878357] [T/O: false ][Cruise: true ] +[Elevator: 0.159075] [Roll: 0.072801] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.953003] [T/O: false ][Cruise: true ] +[Elevator: 0.172725] [Roll: 0.080480] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.374939] [T/O: false ][Cruise: true ] +[Elevator: 0.187796] [Roll: 0.099342] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.988708] [T/O: false ][Cruise: true ] +[Elevator: 0.197986] [Roll: 0.111711] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.498474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120224] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.580139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.135204] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.764771] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.144677] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.420593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152078] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.365601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.387207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.952759] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.151862] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.596497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.145520] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.951843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.136978] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.429321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.119223] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.876709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.108048] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.971863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100813] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.386108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090987] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.013611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.077815] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.941711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.062687] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.804077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.049201] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.658936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.041053] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.962708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.033602] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.599548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.024603] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.278503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010881] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.543457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.002943] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.852783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.011942] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.908447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.025649] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.519348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.032586] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.753845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040665] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.352173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.054079] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.276245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.063441] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.533691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070874] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.278809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.086533] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.065857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.101692] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.191345] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.108494] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.726074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.116040] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.649048] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.126721] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.677612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.146795] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.437927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.495605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.792847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.984314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.114685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.240601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.903809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.365723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.151744] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.300659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.143766] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.849243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.135823] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.719116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120386] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.077881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.111078] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.930298] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.095071] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.977417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080979] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.743896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.073387] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.012695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.066539] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.107666] [T/O: false ][Cruise: true ] +[Elevator: 0.199283] [Roll: -0.057390] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.871216] [T/O: false ][Cruise: true ] +[Elevator: 0.190091] [Roll: -0.041071] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.070801] [T/O: false ][Cruise: true ] +[Elevator: 0.174184] [Roll: -0.025165] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.537231] [T/O: false ][Cruise: true ] +[Elevator: 0.160271] [Roll: -0.011252] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.597900] [T/O: false ][Cruise: true ] +[Elevator: 0.153892] [Roll: -0.004872] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.714478] [T/O: false ][Cruise: true ] +[Elevator: 0.145699] [Roll: 0.003320] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.326904] [T/O: false ][Cruise: true ] +[Elevator: 0.138468] [Roll: 0.010552] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.616577] [T/O: false ][Cruise: true ] +[Elevator: 0.124205] [Roll: 0.024814] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.422852] [T/O: false ][Cruise: true ] +[Elevator: 0.108790] [Roll: 0.040230] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.054443] [T/O: false ][Cruise: true ] +[Elevator: 0.092507] [Roll: 0.049825] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.013794] [T/O: false ][Cruise: true ] +[Elevator: 0.083516] [Roll: 0.064341] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.721191] [T/O: false ][Cruise: true ] +[Elevator: 0.075489] [Roll: 0.073530] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.124878] [T/O: false ][Cruise: true ] +[Elevator: 0.067184] [Roll: 0.081836] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.600708] [T/O: false ][Cruise: true ] +[Elevator: 0.050937] [Roll: 0.098082] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.182495] [T/O: false ][Cruise: true ] +[Elevator: 0.034950] [Roll: 0.114070] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.085083] [T/O: false ][Cruise: true ] +[Elevator: 0.027479] [Roll: 0.121540] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.369019] [T/O: false ][Cruise: true ] +[Elevator: 0.011834] [Roll: 0.137186] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.198608] [T/O: false ][Cruise: true ] +[Elevator: 0.004212] [Roll: 0.144808] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.790771] [T/O: false ][Cruise: true ] +[Elevator: -0.003043] [Roll: 0.152063] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.616699] [T/O: false ][Cruise: true ] +[Elevator: -0.017385] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.930176] [T/O: false ][Cruise: true ] +[Elevator: -0.032278] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.679443] [T/O: false ][Cruise: true ] +[Elevator: -0.041093] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.507935] [T/O: false ][Cruise: true ] +[Elevator: -0.052408] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.529907] [T/O: false ][Cruise: true ] +[Elevator: -0.063163] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.923096] [T/O: false ][Cruise: true ] +[Elevator: -0.071015] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.663452] [T/O: false ][Cruise: true ] +[Elevator: -0.082542] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.937622] [T/O: false ][Cruise: true ] +[Elevator: -0.093587] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.840698] [T/O: false ][Cruise: true ] +[Elevator: -0.101099] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.167480] [T/O: false ][Cruise: true ] +[Elevator: -0.113902] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.297729] [T/O: false ][Cruise: true ] +[Elevator: -0.130864] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.649780] [T/O: false ][Cruise: true ] +[Elevator: -0.138351] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.385010] [T/O: false ][Cruise: true ] +[Elevator: -0.145958] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.936523] [T/O: false ][Cruise: true ] +[Elevator: -0.156123] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.500122] [T/O: false ][Cruise: true ] +[Elevator: -0.169861] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.332642] [T/O: false ][Cruise: true ] +[Elevator: -0.178902] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.964111] [T/O: false ][Cruise: true ] +[Elevator: -0.200725] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.608154] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.025024] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.318237] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.234863] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.073242] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.835449] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.370605] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.985840] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.961670] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.985596] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.940918] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.495483] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.937012] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.186890] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.114014] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.864136] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.510620] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.714478] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.843994] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.892090] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.552368] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.239502] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.391235] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.520264] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.358643] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.956299] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.552002] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.618164] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.708740] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.524536] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.917358] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.308960] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.157837] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.931030] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.436768] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.391479] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.777100] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.413208] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.872925] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.949097] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.742676] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.389526] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.347778] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.633789] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.393311] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.015015] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.421509] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.667969] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.670288] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.279907] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.289673] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.330933] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.118652] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.804810] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.903320] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.302002] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.647583] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.107788] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.682495] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.784302] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.141941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.131226] [T/O: false ][Cruise: true ] +[Elevator: -0.202522] [Roll: 0.126613] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.483521] [T/O: false ][Cruise: true ] +[Elevator: -0.189419] [Roll: 0.116278] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.604614] [T/O: false ][Cruise: true ] +[Elevator: -0.179261] [Roll: 0.108672] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.237305] [T/O: false ][Cruise: true ] +[Elevator: -0.170108] [Roll: 0.099520] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.449341] [T/O: false ][Cruise: true ] +[Elevator: -0.156318] [Roll: 0.085730] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.864502] [T/O: false ][Cruise: true ] +[Elevator: -0.147243] [Roll: 0.076655] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.152710] [T/O: false ][Cruise: true ] +[Elevator: -0.134670] [Roll: 0.058868] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.465088] [T/O: false ][Cruise: true ] +[Elevator: -0.120971] [Roll: 0.046760] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.573853] [T/O: false ][Cruise: true ] +[Elevator: -0.110894] [Roll: 0.040306] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.304932] [T/O: false ][Cruise: true ] +[Elevator: -0.103099] [Roll: 0.032511] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.099854] [T/O: false ][Cruise: true ] +[Elevator: -0.095572] [Roll: 0.022517] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.762817] [T/O: false ][Cruise: true ] +[Elevator: -0.086385] [Roll: 0.009859] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.809814] [T/O: false ][Cruise: true ] +[Elevator: -0.072549] [Roll: 0.001961] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.297485] [T/O: false ][Cruise: true ] +[Elevator: -0.059683] [Roll: -0.010906] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.595581] [T/O: false ][Cruise: true ] +[Elevator: -0.040580] [Roll: -0.030008] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.896606] [T/O: false ][Cruise: true ] +[Elevator: -0.033177] [Roll: -0.037411] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.868896] [T/O: false ][Cruise: true ] +[Elevator: -0.025546] [Roll: -0.046947] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.513916] [T/O: false ][Cruise: true ] +[Elevator: -0.017307] [Roll: -0.059974] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.737183] [T/O: false ][Cruise: true ] +[Elevator: -0.003118] [Roll: -0.067470] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.977905] [T/O: false ][Cruise: true ] +[Elevator: 0.003952] [Roll: -0.074540] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.528076] [T/O: false ][Cruise: true ] +[Elevator: 0.011628] [Roll: -0.082216] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.842041] [T/O: false ][Cruise: true ] +[Elevator: 0.032947] [Roll: -0.103536] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.727051] [T/O: false ][Cruise: true ] +[Elevator: 0.042985] [Roll: -0.113573] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.950806] [T/O: false ][Cruise: true ] +[Elevator: 0.051046] [Roll: -0.121635] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.497559] [T/O: false ][Cruise: true ] +[Elevator: 0.066414] [Roll: -0.137002] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.108398] [T/O: false ][Cruise: true ] +[Elevator: 0.073690] [Roll: -0.144278] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.360168] [T/O: false ][Cruise: true ] +[Elevator: 0.081962] [Roll: -0.137646] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.125244] [T/O: false ][Cruise: true ] +[Elevator: 0.091266] [Roll: -0.121034] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.629700] [T/O: false ][Cruise: true ] +[Elevator: 0.107216] [Roll: -0.112392] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.166809] [T/O: false ][Cruise: true ] +[Elevator: 0.118653] [Roll: -0.100955] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.883667] [T/O: false ][Cruise: true ] +[Elevator: 0.139195] [Roll: -0.080412] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.761169] [T/O: false ][Cruise: true ] +[Elevator: 0.148453] [Roll: -0.071155] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.062683] [T/O: false ][Cruise: true ] +[Elevator: 0.156663] [Roll: -0.062945] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.320496] [T/O: false ][Cruise: true ] +[Elevator: 0.165531] [Roll: -0.054076] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.875244] [T/O: false ][Cruise: true ] +[Elevator: 0.178696] [Roll: -0.040912] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.092529] [T/O: false ][Cruise: true ] +[Elevator: 0.190667] [Roll: -0.025765] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.238708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.008515] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.225037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.000735] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.559448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.006753] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.281189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.016083] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.821960] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.028939] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.509094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.038771] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.162659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.053491] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.346558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.067655] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.895630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.075038] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.847168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.082517] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.325989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.096883] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.840698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.111804] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.810608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.119809] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.748779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.132470] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.367126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.142622] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.714722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150320] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.250122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.122498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.148688] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.004761] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.136672] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.553833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.118853] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.070190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110270] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.422974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.102995] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.135742] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.093138] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.005981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080438] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.600708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.068130] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.130676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.049224] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.232788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.042217] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.750549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.034930] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.313538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.027976] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.236206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.014193] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.079163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.005984] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.900146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.001358] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.458008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.018268] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.558167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.031594] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.997681] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.039117] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.892090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.051082] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.456055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.065801] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.705017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.077255] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.352417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.086917] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.333008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.099292] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.110596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.107312] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.699585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.122305] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.870239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.136038] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.538879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.143171] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.212280] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.149983] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.969421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.242920] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.711426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.397156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.358643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.869324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.367432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.962524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.257690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.321655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.055786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.932739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.898071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.145406] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.245483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.138518] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.629639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.125895] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.808594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.116806] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.378296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.107659] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.220703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.094034] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.410278] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.081946] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.326538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.075875] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.143311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.069959] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.984375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.058589] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.863159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.041705] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.063110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.035609] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.844238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.029773] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.018799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.015834] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.235107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.001690] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.801270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.005205] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.801758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.011542] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.704468] [T/O: false ][Cruise: true ] +[Elevator: 0.194227] [Roll: 0.023312] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.916992] [T/O: false ][Cruise: true ] +[Elevator: 0.184456] [Roll: 0.035152] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.172158] [Roll: 0.045294] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.625977] [T/O: false ][Cruise: true ] +[Elevator: 0.160692] [Roll: 0.051165] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.182983] [T/O: false ][Cruise: true ] +[Elevator: 0.154366] [Roll: 0.063817] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.707031] [T/O: false ][Cruise: true ] +[Elevator: 0.141777] [Roll: 0.077831] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.756348] [T/O: false ][Cruise: true ] +[Elevator: 0.127752] [Roll: 0.091856] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.188599] [T/O: false ][Cruise: true ] +[Elevator: 0.118129] [Roll: 0.101479] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.747803] [T/O: false ][Cruise: true ] +[Elevator: 0.111430] [Roll: 0.108177] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.306519] [T/O: false ][Cruise: true ] +[Elevator: 0.102219] [Roll: 0.117389] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.388184] [T/O: false ][Cruise: true ] +[Elevator: 0.082268] [Roll: 0.137340] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.559570] [T/O: false ][Cruise: true ] +[Elevator: 0.075765] [Roll: 0.143843] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.640503] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: true ][Cruise: false ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.696045] [T/O: false ][Cruise: true ] +[Elevator: 0.106647] [Roll: 0.112961] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.607788] [T/O: false ][Cruise: true ] +[Elevator: 0.159499] [Roll: 0.053551] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.159180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.001273] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.372437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.066605] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.024292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120004] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.338623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.830811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.726501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.144106] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.978394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.082131] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.022469] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.970520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.037432] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.138611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100528] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.969604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.151750] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.966309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.115724] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.331543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.059643] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.670959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000723] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.899109] [T/O: false ][Cruise: true ] +[Elevator: 0.159499] [Roll: -0.060109] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.093689] [T/O: false ][Cruise: true ] +[Elevator: 0.098841] [Roll: -0.117246] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.950195] [T/O: false ][Cruise: true ] +[Elevator: 0.047851] [Roll: -0.118439] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.001221] [T/O: false ][Cruise: true ] +[Elevator: -0.010782] [Roll: -0.063236] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.483032] [T/O: false ][Cruise: true ] +[Elevator: -0.068698] [Roll: -0.001891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.296265] [T/O: false ][Cruise: true ] +[Elevator: -0.117752] [Roll: 0.045151] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.273193] [T/O: false ][Cruise: true ] +[Elevator: -0.175998] [Roll: 0.105410] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.447510] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.884644] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.216431] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.547241] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.151245] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.950806] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.251953] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.069092] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.559326] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.759888] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.381348] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.493530] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.624023] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.964355] [T/O: false ][Cruise: true ] +[Elevator: -0.151321] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.374756] [T/O: false ][Cruise: true ] +[Elevator: -0.096071] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.970093] [T/O: false ][Cruise: true ] +[Elevator: -0.043522] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.831909] [T/O: false ][Cruise: true ] +[Elevator: 0.007846] [Roll: 0.141173] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.749268] [T/O: false ][Cruise: true ] +[Elevator: 0.069438] [Roll: 0.079582] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.127387] [Roll: 0.021632] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.936890] [T/O: false ][Cruise: true ] +[Elevator: 0.176976] [Roll: -0.027956] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.147461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080986] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.703369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.070190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.974487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.131921] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.754272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.071003] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.888489] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.018457] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.525818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.036435] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.071167] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.092043] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.442078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140992] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.857971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.151795] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.193574] [Roll: 0.107299] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.006470] [T/O: false ][Cruise: true ] +[Elevator: 0.135310] [Roll: 0.042165] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.349487] [T/O: false ][Cruise: true ] +[Elevator: 0.069502] [Roll: -0.021781] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.767761] [T/O: false ][Cruise: true ] +[Elevator: 0.014905] [Roll: -0.072940] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.605225] [T/O: false ][Cruise: true ] +[Elevator: -0.035922] [Roll: -0.122196] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.481262] [T/O: false ][Cruise: true ] +[Elevator: -0.099623] [Roll: -0.119985] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.089111] [T/O: false ][Cruise: true ] +[Elevator: -0.146925] [Roll: -0.072683] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.603088] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.007815] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.788940] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.047532] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.872070] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.106329] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.049805] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.573608] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.142357] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.766846] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.085885] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.039551] [T/O: false ][Cruise: true ] +[Elevator: -0.179800] [Roll: 0.038623] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.277100] [T/O: false ][Cruise: true ] +[Elevator: -0.120911] [Roll: -0.020265] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.596069] [T/O: false ][Cruise: true ] +[Elevator: -0.067483] [Roll: -0.073694] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.131714] [T/O: false ][Cruise: true ] +[Elevator: -0.015475] [Roll: -0.125702] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.216309] [T/O: false ][Cruise: true ] +[Elevator: 0.034869] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.372131] [T/O: false ][Cruise: true ] +[Elevator: 0.083724] [Roll: -0.120198] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.510071] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.073230] [Yaw: -0.179196] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.482483] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.022763] [Yaw: -0.025918] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.377991] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.035466] [Yaw: 0.145786] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.849304] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.082943] [Yaw: 0.295298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.260864] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.137290] [Yaw: 0.270448] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.812622] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.095248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.730042] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122232] [Yaw: -0.089201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.597534] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.072228] [Yaw: -0.232371] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.882080] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008867] [Yaw: -0.055075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.563049] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.057773] [Yaw: -0.033193] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.421753] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.107757] [Yaw: -0.191811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.758728] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.363361] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.451477] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.124384] [Yaw: -0.244847] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.932434] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.076152] [Yaw: -0.096765] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.671387] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023260] [Yaw: 0.067205] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.618958] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039823] [Yaw: 0.257332] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.457336] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.097079] [Yaw: 0.417687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.716370] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146810] [Yaw: 0.381386] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.492004] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.206118] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.570496] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.118024] [Yaw: 0.013274] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.926208] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057297] [Yaw: 0.104250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.788269] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.004938] [Yaw: 0.211910] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.186768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060846] [Yaw: 0.019362] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.293274] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.110457] [Yaw: -0.139866] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.028198] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.008431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.631287] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.104312] [Yaw: 0.182752] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.476257] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.054505] [Yaw: 0.334128] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.872681] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006086] [Yaw: 0.439484] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.132080] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.061213] [Yaw: 0.278769] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.920227] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.112736] [Yaw: 0.117683] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.215027] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.297470] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.296326] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149207] [Yaw: 0.373299] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.245483] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.090041] [Yaw: 0.191846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.802368] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039842] [Yaw: 0.045642] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.663757] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.021106] [Yaw: -0.140250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.061401] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.073857] [Yaw: -0.186926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.462341] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139640] [Yaw: 0.005619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.463684] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.156949] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.151001] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.118843] [Yaw: 0.259687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.643494] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067750] [Yaw: 0.093447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.517639] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.003524] [Yaw: 0.029041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.629333] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.045794] [Yaw: 0.187098] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.788147] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104728] [Yaw: 0.352245] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.921021] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.490994] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.592163] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.334723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.793884] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104048] [Yaw: 0.169134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.738647] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042052] [Yaw: -0.008261] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.787964] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008075] [Yaw: -0.169555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.776062] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.065263] [Yaw: -0.327718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.172577] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116884] [Yaw: -0.410131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.381042] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.229028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.850494] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.120185] [Yaw: -0.061133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.583618] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.064097] [Yaw: -0.131849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.973450] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004790] [Yaw: -0.007395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.468201] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.043652] [Yaw: 0.147157] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.128357] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.118133] [Yaw: 0.374491] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.276306] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.208899] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.173340] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.113107] [Yaw: 0.024977] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.556213] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.058172] [Yaw: -0.104580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.270813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.004175] [Yaw: 0.057810] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.750793] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.053235] [Yaw: -0.055491] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.974030] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.115120] [Yaw: -0.244794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.702301] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.323705] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.518799] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.131571] [Yaw: -0.172945] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.034454] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077136] [Yaw: -0.014427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.821411] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023572] [Yaw: 0.152856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.462158] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033364] [Yaw: 0.317771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.281281] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.086043] [Yaw: 0.467130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.674530] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.145411] [Yaw: 0.293178] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.197144] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.146072] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.184753] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.015958] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.916687] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106824] [Yaw: 0.141331] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.292023] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.048229] [Yaw: 0.285862] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.849213] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013918] [Yaw: 0.085889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.018585] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070373] [Yaw: -0.077785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.647827] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.120296] [Yaw: -0.189402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.655945] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.000503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.409515] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.111631] [Yaw: 0.153476] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.576599] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.061226] [Yaw: 0.315882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.198257] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000363] [Yaw: 0.491647] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.836960] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057431] [Yaw: 0.343961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.976135] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115627] [Yaw: 0.181542] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.544662] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.382090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.575699] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.119382] [Yaw: 0.287557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.716354] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067075] [Yaw: 0.115357] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.676285] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.001340] [Yaw: -0.082452] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.609200] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.058981] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.840668] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.115688] [Yaw: -0.113718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.244884] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139979] [Yaw: 0.047928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.149940] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.079274] [Yaw: 0.015134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.673664] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013966] [Yaw: -0.179911] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.907249] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036448] [Yaw: -0.030678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.314510] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098064] [Yaw: 0.145197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.846193] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.082548] [Yaw: 0.114115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.540472] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.030763] [Yaw: -0.053419] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.188868] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.525491] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.045164] [Yaw: 0.023398] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.314579] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.017776] [Yaw: 0.164447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262043] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000623] [Yaw: 0.009274] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.238101] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050034] [Yaw: -0.149154] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225593] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057592] [Yaw: 0.014227] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226377] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.024992] [Yaw: 0.181388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228014] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031571] [Yaw: 0.191364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213421] [T/O: false ][Cruise: true ] +[Elevator: 0.095704] [Roll: -0.061578] [Yaw: 0.007095] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202143] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.142651] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190925] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.004794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186148] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.153506] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184530] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.327530] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181066] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.483675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176424] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175313] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169858] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167945] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168079] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166080] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156334] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148982] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145148] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141556] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130172] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.404675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115607] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.248867] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105053] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.080629] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108589] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127425] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145952] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148360] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149115] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148423] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148708] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.050039] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148879] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148894] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148912] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148917] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148903] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148902] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148893] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148886] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.325455] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148831] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148811] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148773] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148717] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148701] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148731] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148792] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148815] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148836] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.453097] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.159020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.169020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.179020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.189020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.199020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148942] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.159020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.169020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.179020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.189020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.199020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148901] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148904] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148913] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148900] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148884] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148877] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.682640] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148803] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148748] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148685] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148694] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148721] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149012] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148959] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148679] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148423] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148335] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148277] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148435] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148595] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149089] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149614] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149571] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149361] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148406] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147934] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147577] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147209] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146643] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146075] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144328] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142033] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138949] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134779] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130245] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125517] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119966] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116233] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112659] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109905] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107713] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105890] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.016670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105012] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.049546] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104231] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.084900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104764] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.114824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105229] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.143422] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106966] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.178446] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108869] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.210366] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110941] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.242800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113581] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.275209] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116041] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.301307] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118652] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.332448] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121644] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.367069] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125031] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.404219] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128365] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.434539] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131270] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.463011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134333] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.497977] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137053] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138909] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140796] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141852] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143028] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143886] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144623] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145074] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145336] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145862] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146841] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147910] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148636] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149323] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150621] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152090] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153618] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155208] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156936] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158547] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160059] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160837] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161557] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162388] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163288] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164218] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165265] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165975] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166203] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166426] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166999] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167554] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167865] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168157] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168298] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168283] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168229] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168089] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167935] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167976] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168015] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168462] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169021] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169644] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170245] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171125] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172487] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173740] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174726] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175632] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175747] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175836] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176029] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176228] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176562] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176973] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177687] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.482836] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180122] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.451796] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181729] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.424805] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183180] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.391964] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184022] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.356240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184762] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.325088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184681] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.289900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184437] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.257879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184175] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.224224] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183890] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.191017] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184322] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.155733] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185201] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.126265] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186225] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.098578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187426] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.066602] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188564] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.032451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189469] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.004402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190376] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.042292] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191308] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.074055] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192242] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.104590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194860] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197884] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.143304] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200407] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.130121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202631] [T/O: false ][Cruise: true ] +[Elevator: 0.064106] [Roll: -0.024890] [Yaw: -0.095318] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203954] [T/O: false ][Cruise: true ] +[Elevator: 0.073848] [Roll: -0.034632] [Yaw: -0.068652] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204261] [T/O: false ][Cruise: true ] +[Elevator: 0.082643] [Roll: -0.043717] [Yaw: -0.034135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205662] [T/O: false ][Cruise: true ] +[Elevator: 0.091490] [Roll: -0.059471] [Yaw: -0.001333] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209289] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067850] [Yaw: 0.032184] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213377] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.071644] [Yaw: 0.070287] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217436] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063162] [Yaw: 0.100709] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221470] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.049997] [Yaw: 0.131379] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223911] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.037742] [Yaw: 0.166680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226236] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028596] [Yaw: 0.203264] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227730] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.011474] [Yaw: 0.240381] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229005] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002128] [Yaw: 0.263416] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228950] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006715] [Yaw: 0.228040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228532] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.018689] [Yaw: 0.193995] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227644] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031273] [Yaw: 0.161185] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226357] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029779] [Yaw: 0.123037] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225410] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033108] [Yaw: 0.096754] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224709] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042411] [Yaw: 0.061729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224278] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050391] [Yaw: 0.029810] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224776] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.066735] [Yaw: -0.004195] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225265] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075160] [Yaw: -0.037895] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226831] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080822] [Yaw: -0.071258] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228765] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.071690] [Yaw: -0.101477] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231396] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.059240] [Yaw: -0.136423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234116] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046582] [Yaw: -0.135348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237204] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038857] [Yaw: -0.104449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240832] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031318] [Yaw: -0.078267] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244967] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.016645] [Yaw: -0.045055] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249873] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.005774] [Yaw: -0.011329] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.255630] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004109] [Yaw: 0.028202] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262052] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013815] [Yaw: 0.062925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.268169] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029302] [Yaw: 0.095750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.277283] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033000] [Yaw: 0.122900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.285439] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.021380] [Yaw: 0.157239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.299733] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.007989] [Yaw: 0.161367] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.315406] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008985] [Yaw: 0.124844] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.343468] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.022497] [Yaw: 0.097626] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.372631] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033311] [Yaw: 0.066755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.416084] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.042656] [Yaw: 0.029376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.471793] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059371] [Yaw: -0.006113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.538133] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.065660] [Yaw: -0.039322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.629120] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.054667] [Yaw: -0.072902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.722614] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.040590] [Yaw: -0.100386] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.858220] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.987272] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031119] [Yaw: -0.138270] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.170941] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013544] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.339746] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000953] [Yaw: -0.133444] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.574382] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010229] [Yaw: -0.096338] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.825839] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.025379] [Yaw: -0.069775] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.097311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034236] [Yaw: -0.039528] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.402325] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042085] [Yaw: -0.008131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.754126] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050559] [Yaw: 0.025767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.168581] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.066947] [Yaw: 0.059944] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.574980] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074678] [Yaw: 0.090701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.068903] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084083] [Yaw: 0.117185] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.578901] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098521] [Yaw: 0.147027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.183174] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.107198] [Yaw: 0.181734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.780119] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.112274] [Yaw: 0.202038] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.525511] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.102818] [Yaw: 0.164213] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.311966] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.090114] [Yaw: 0.129247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.152132] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075092] [Yaw: 0.091941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.258202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.065489] [Yaw: 0.056468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.270613] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049326] [Yaw: 0.020833] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.285349] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041037] [Yaw: -0.012322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.345045] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032408] [Yaw: -0.046840] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.525713] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.021577] [Yaw: -0.075477] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.837135] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007306] [Yaw: -0.108029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.372429] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.003035] [Yaw: -0.149395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.121658] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013480] [Yaw: -0.180883] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.773922] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029982] [Yaw: -0.142817] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.509407] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039101] [Yaw: -0.106340] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.387707] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.053174] [Yaw: -0.075141] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.026451] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070113] [Yaw: -0.021511] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.003857] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080475] [Yaw: 0.019939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.938747] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.096658] [Yaw: 0.056061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.182034] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.106530] [Yaw: 0.092139] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.355522] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114640] [Yaw: 0.110982] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.620659] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.126505] [Yaw: 0.080324] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.856426] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.140089] [Yaw: 0.047486] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.389999] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.148608] [Yaw: 0.013409] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.928562] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.149145] [Yaw: -0.019107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.618946] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.140896] [Yaw: -0.052104] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.231571] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.127989] [Yaw: -0.080565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.968246] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116773] [Yaw: -0.109380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.863716] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.108000] [Yaw: -0.144472] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.645226] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100246] [Yaw: -0.175487] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.647339] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.086597] [Yaw: -0.207199] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.678307] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.076302] [Yaw: -0.233838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.030357] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060278] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.370712] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.042958] [Yaw: -0.214969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.864471] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033440] [Yaw: -0.176897] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.959435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023271] [Yaw: -0.144581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.455566] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008580] [Yaw: -0.108828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.120033] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000307] [Yaw: -0.077511] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.435547] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008016] [Yaw: -0.050290] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.906837] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.020097] [Yaw: -0.018629] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.237488] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031675] [Yaw: 0.012975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.655083] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039386] [Yaw: 0.043819] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.228271] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.054395] [Yaw: 0.085092] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.789871] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070980] [Yaw: 0.130980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.192368] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079330] [Yaw: 0.164380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.129982] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.092729] [Yaw: 0.197222] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 129.185303] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104266] [Yaw: 0.232749] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.239578] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.113368] [Yaw: 0.269156] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.485031] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122750] [Yaw: 0.296480] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.638672] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138401] [Yaw: 0.330076] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.272003] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146399] [Yaw: 0.362066] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.522415] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.398073] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.425507] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.407545] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.423920] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.373393] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.183548] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.342135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.087646] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.311353] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.939285] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149046] [Yaw: 0.282433] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.947113] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140840] [Yaw: 0.253557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.846146] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122358] [Yaw: 0.199492] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.842178] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108592] [Yaw: 0.197006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.832458] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100214] [Yaw: 0.230517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.770309] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.086118] [Yaw: 0.263059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.895966] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075947] [Yaw: 0.289806] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.282242] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.066722] [Yaw: 0.325269] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.435715] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050284] [Yaw: 0.359650] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.772308] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.040976] [Yaw: 0.396880] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.658890] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032796] [Yaw: 0.427101] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.643311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.022697] [Yaw: 0.452646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.697006] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008235] [Yaw: 0.488628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.589096] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000270] [Yaw: 0.489114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.817093] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.009990] [Yaw: 0.450236] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.676193] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.024820] [Yaw: 0.423555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.863312] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034840] [Yaw: 0.390053] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.064255] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043056] [Yaw: 0.357187] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.811432] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059464] [Yaw: 0.322929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.841232] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.068345] [Yaw: 0.289082] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.618500] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.076427] [Yaw: 0.262919] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.463577] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.086910] [Yaw: 0.230101] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.308136] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.101073] [Yaw: 0.195709] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.825348] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.109635] [Yaw: 0.161460] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.800873] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.118517] [Yaw: 0.125932] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.219727] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.132103] [Yaw: 0.097923] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.719238] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.142538] [Yaw: 0.069062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.143921] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151505] [Yaw: 0.033195] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.000192] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.666656] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.030868] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.830261] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.063375] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.136475] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.145706] [Yaw: -0.117314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.087463] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.137726] [Yaw: -0.151056] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.302551] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121227] [Yaw: -0.185680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.535675] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.112769] [Yaw: -0.211861] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.505768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.104808] [Yaw: -0.180017] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.573059] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.095893] [Yaw: -0.148648] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.305267] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080801] [Yaw: -0.115362] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.359924] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072621] [Yaw: -0.084529] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.168793] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.064409] [Yaw: -0.057635] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.038727] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.053932] [Yaw: -0.025511] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.653656] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039937] [Yaw: 0.008880] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.103943] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031352] [Yaw: 0.043221] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.594299] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.019514] [Yaw: 0.074697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.176453] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.006519] [Yaw: 0.105933] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.768646] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.001901] [Yaw: 0.137016] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.247345] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.022835] [Yaw: 0.195534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.683411] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034626] [Yaw: 0.236542] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.086365] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.043262] [Yaw: 0.270961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.560303] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.051999] [Yaw: 0.292590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.629608] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067632] [Yaw: 0.266728] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.812622] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075969] [Yaw: 0.233378] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.765625] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084504] [Yaw: 0.203540] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.891541] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100441] [Yaw: 0.166864] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.863129] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.109150] [Yaw: 0.132029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.931915] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.118261] [Yaw: 0.100120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.893311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.136883] [Yaw: 0.049359] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.521118] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.150600] [Yaw: 0.005443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.286102] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.028722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.992950] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.007019] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.504944] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.024342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.834869] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.055192] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.257751] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.088909] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.809479] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.118354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.266296] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.152776] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.502991] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.182662] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.742249] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.214213] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.969513] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.247391] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.182068] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149888] [Yaw: 0.279748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.215149] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.141889] [Yaw: 0.306955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.240845] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.129383] [Yaw: 0.341234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.168060] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.117605] [Yaw: 0.372717] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.109955] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108572] [Yaw: 0.408851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.961121] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100070] [Yaw: 0.437044] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.905884] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.085653] [Yaw: 0.467909] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.662384] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075863] [Yaw: 0.448550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.488190] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067390] [Yaw: 0.421778] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.166412] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.051832] [Yaw: 0.389938] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.984467] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041348] [Yaw: 0.349705] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.606171] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032356] [Yaw: 0.313738] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.249176] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.019723] [Yaw: 0.282526] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.759583] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007008] [Yaw: 0.251562] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.280548] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.001327] [Yaw: 0.218221] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.748749] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.010163] [Yaw: 0.182878] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.171967] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.025275] [Yaw: 0.149450] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.566498] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034481] [Yaw: 0.116979] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.902344] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043921] [Yaw: 0.088629] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.251770] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060738] [Yaw: 0.051167] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.505920] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.069503] [Yaw: 0.016106] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.741516] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077704] [Yaw: -0.016699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.921631] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.091779] [Yaw: -0.054145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.092407] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.103120] [Yaw: -0.081910] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.226074] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.111625] [Yaw: -0.113166] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.336731] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.119848] [Yaw: -0.146058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.425903] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.133886] [Yaw: -0.177576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.491516] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143899] [Yaw: -0.210890] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.549896] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151999] [Yaw: -0.236390] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.593658] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.271180] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.632416] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.303218] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.665619] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.336139] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.696228] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151898] [Yaw: -0.360535] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.732849] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143377] [Yaw: -0.326447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.767700] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.134305] [Yaw: -0.296062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.819855] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.119350] [Yaw: -0.261712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.883057] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.110731] [Yaw: -0.230232] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.959930] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.102133] [Yaw: -0.200690] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.050446] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.091158] [Yaw: -0.170552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.158295] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074589] [Yaw: -0.121884] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.303284] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.062111] [Yaw: -0.076530] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.504791] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043137] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.714691] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039689] [Yaw: -0.021501] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.918671] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023820] [Yaw: 0.034713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.186249] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.010072] [Yaw: 0.065594] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.441467] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002127] [Yaw: 0.083020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.759949] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.005700] [Yaw: 0.051712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.066833] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.014699] [Yaw: 0.021582] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.447998] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029961] [Yaw: -0.013959] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.877045] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039297] [Yaw: -0.051306] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.306915] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.047282] [Yaw: -0.079102] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.848907] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.062967] [Yaw: -0.114170] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.375885] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.073637] [Yaw: -0.093689] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.988953] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.081905] [Yaw: -0.068010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.606201] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098571] [Yaw: -0.033169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.204681] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106439] [Yaw: -0.001695] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.867096] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114280] [Yaw: 0.029668] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.579315] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122650] [Yaw: 0.060986] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.342621] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138418] [Yaw: 0.093684] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.107025] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146118] [Yaw: 0.117805] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.061066] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.153459] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.973450] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.191781] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.994171] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.247155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.033813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.278846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.225433] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149279] [Yaw: 0.308766] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.466675] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140405] [Yaw: 0.344262] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.653748] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.126789] [Yaw: 0.377794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.068970] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114954] [Yaw: 0.361777] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.382111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106419] [Yaw: 0.327638] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.890778] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098509] [Yaw: 0.295997] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.378510] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.082504] [Yaw: 0.270814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.909149] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.073999] [Yaw: 0.237171] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.527771] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.064713] [Yaw: 0.203936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.345825] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049619] [Yaw: 0.171024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.977417] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041450] [Yaw: 0.138347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.909576] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032271] [Yaw: 0.104657] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.886047] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.020699] [Yaw: 0.076691] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.749115] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008128] [Yaw: 0.044278] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.782043] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000036] [Yaw: 0.011908] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.018585] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.009010] [Yaw: -0.024274] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.288422] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.021971] [Yaw: -0.055706] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.351593] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033091] [Yaw: -0.083586] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.735413] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.052365] [Yaw: -0.135717] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.925537] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.058824] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.460022] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066149] [Yaw: -0.123637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.744720] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.081214] [Yaw: -0.070652] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.254669] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.098663] [Yaw: -0.032801] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.846191] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.107809] [Yaw: -0.011628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.469299] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116270] [Yaw: -0.045471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.138550] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.126185] [Yaw: -0.073591] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.566833] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139511] [Yaw: -0.099222] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.372620] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.147310] [Yaw: -0.130415] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.956085] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.164046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.642273] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.195668] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.516663] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.226307] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.692139] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.258052] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.803223] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.293918] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.106232] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138498] [Yaw: -0.359735] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.308167] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121325] [Yaw: -0.396811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.407990] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.112711] [Yaw: -0.423667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.486023] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.104474] [Yaw: -0.445349] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.544983] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.093744] [Yaw: -0.413165] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.946411] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.079564] [Yaw: -0.384921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.797363] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.071575] [Yaw: -0.352967] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.023560] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063029] [Yaw: -0.318784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.981720] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.050835] [Yaw: -0.285983] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.453918] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.037539] [Yaw: -0.248194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.937592] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029238] [Yaw: -0.221046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.033356] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.016048] [Yaw: -0.192881] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.315399] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005745] [Yaw: -0.160235] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.485718] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.002423] [Yaw: -0.127564] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.942200] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.011117] [Yaw: -0.092786] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.402100] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.027663] [Yaw: -0.065819] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.130249] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.035962] [Yaw: -0.032622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.249023] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.044013] [Yaw: -0.001587] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.879272] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067515] [Yaw: 0.062216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.615967] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076395] [Yaw: 0.095851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.150208] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.087737] [Yaw: 0.124494] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.861389] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101170] [Yaw: 0.157623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.023987] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.109027] [Yaw: 0.189051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.523193] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.117594] [Yaw: 0.223318] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.305176] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.132013] [Yaw: 0.260104] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.380432] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.144709] [Yaw: 0.292949] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.465515] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.331008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.386353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.367010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.059082] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.403294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.891785] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.436228] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.708435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.472413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.621826] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.635681] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.148848] [Yaw: 0.489510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.405212] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140133] [Yaw: 0.454651] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.274658] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122403] [Yaw: 0.420859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.279602] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104222] [Yaw: 0.350220] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.008850] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.093087] [Yaw: 0.315586] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.972229] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079713] [Yaw: 0.286198] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.230713] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.071233] [Yaw: 0.257482] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.307739] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.059334] [Yaw: 0.224550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.676208] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046270] [Yaw: 0.189000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.945374] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.037783] [Yaw: 0.155054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.853394] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029672] [Yaw: 0.122608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.823059] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.016478] [Yaw: 0.097266] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.973083] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.005748] [Yaw: 0.066129] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.286316] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002633] [Yaw: 0.032607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.993591] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023315] [Yaw: -0.024265] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.128052] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035125] [Yaw: -0.004599] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.211365] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.044831] [Yaw: 0.030838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.267639] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060332] [Yaw: 0.064858] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.258240] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.068465] [Yaw: 0.095593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.201477] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.076962] [Yaw: 0.123535] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.127075] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.088199] [Yaw: 0.156789] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.555420] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100802] [Yaw: 0.187522] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.134888] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.108307] [Yaw: 0.217543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.760803] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116297] [Yaw: 0.249503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.273254] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.127346] [Yaw: 0.279255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.822205] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.140419] [Yaw: 0.284625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.601440] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.149314] [Yaw: 0.236857] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.979736] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.191635] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.519409] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.158942] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.984558] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.126158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.421021] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.098238] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.869324] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.067067] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.131287] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.146968] [Yaw: 0.034933] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.296692] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138114] [Yaw: -0.000484] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.703308] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121203] [Yaw: -0.036574] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.044189] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.105079] [Yaw: -0.093408] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.976624] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.095579] [Yaw: -0.126489] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.215637] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080077] [Yaw: -0.162043] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.364685] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070672] [Yaw: -0.199665] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.460999] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.061891] [Yaw: -0.230013] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.343140] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.047878] [Yaw: -0.222797] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.113586] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.036960] [Yaw: -0.190978] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.820374] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029448] [Yaw: -0.160928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.566467] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013613] [Yaw: -0.125264] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.336304] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.003637] [Yaw: -0.089341] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.071350] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.005687] [Yaw: -0.059603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.680176] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.016074] [Yaw: -0.023802] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.243225] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038151] [Yaw: 0.038879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.838318] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046483] [Yaw: 0.072205] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.154541] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057861] [Yaw: 0.100518] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.630554] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070609] [Yaw: 0.129493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.013733] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079251] [Yaw: 0.164064] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.399414] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.094110] [Yaw: 0.199984] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.805420] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.111162] [Yaw: 0.260335] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.920654] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.121040] [Yaw: 0.292533] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.156006] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.137098] [Yaw: 0.325176] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.235657] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.145352] [Yaw: 0.357879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.323792] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.391894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.413696] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.412670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.490051] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.378373] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.557739] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.341812] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.464172] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.309087] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.388977] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.279058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.175537] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.248801] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.041870] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147128] [Yaw: 0.215961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.862732] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138636] [Yaw: 0.181996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.592041] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.116709] [Yaw: 0.121680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.404236] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.105518] [Yaw: 0.146555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.165894] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.095698] [Yaw: 0.181153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.854370] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080594] [Yaw: 0.214880] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.485840] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.072896] [Yaw: 0.245670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.136719] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.063686] [Yaw: 0.275060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.730103] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049041] [Yaw: 0.301877] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.299561] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041176] [Yaw: 0.333336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.931091] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032140] [Yaw: 0.369480] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.543335] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.019286] [Yaw: 0.404565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.152344] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000972] [Yaw: 0.457382] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.646851] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.009457] [Yaw: 0.452367] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.163574] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.022613] [Yaw: 0.426864] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.660950] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033243] [Yaw: 0.396439] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.151001] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.041293] [Yaw: 0.364238] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.682373] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.056914] [Yaw: 0.329310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.223267] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066407] [Yaw: 0.295155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.687866] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074585] [Yaw: 0.270288] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.138062] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.082502] [Yaw: 0.238918] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.619812] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.098419] [Yaw: 0.206324] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.106995] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.107739] [Yaw: 0.169045] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.611511] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121828] [Yaw: 0.126192] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.049438] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139938] [Yaw: 0.079464] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.529968] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.148604] [Yaw: 0.044800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.958984] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.012423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.413452] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.019416] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.886353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.147778] [Yaw: -0.055947] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.364563] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139771] [Yaw: -0.082649] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.816406] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.124907] [Yaw: -0.114892] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.283936] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114459] [Yaw: -0.150006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.810608] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.105983] [Yaw: -0.121970] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.351440] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.095724] [Yaw: -0.086723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.865173] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080602] [Yaw: -0.059662] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.458130] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.071554] [Yaw: -0.023469] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.061584] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.062000] [Yaw: 0.014747] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.704041] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.046678] [Yaw: 0.051741] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.316589] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.036458] [Yaw: 0.085539] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.950195] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.014103] [Yaw: 0.139642] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.612854] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005050] [Yaw: 0.171959] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.285034] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.002502] [Yaw: 0.202163] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.012329] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.012157] [Yaw: 0.238430] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.916382] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.028554] [Yaw: 0.203433] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.780945] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.037517] [Yaw: 0.167581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.697571] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046018] [Yaw: 0.133575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.530884] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057512] [Yaw: 0.103929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.493347] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074538] [Yaw: 0.058710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.408875] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.090195] [Yaw: 0.011766] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.339417] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101592] [Yaw: -0.018134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.470032] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.110121] [Yaw: -0.018342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.570801] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.118638] [Yaw: 0.015730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.775024] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.133568] [Yaw: 0.051449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.974609] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.144375] [Yaw: 0.087306] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.304932] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.146514] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.595520] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.182107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.910461] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.213036] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.184265] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.245699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.413147] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.272909] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.738953] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.299234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.074768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.354930] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.508606] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.145108] [Yaw: 0.388194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.038330] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.135168] [Yaw: 0.422738] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.718750] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.119549] [Yaw: 0.451216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.462097] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.111495] [Yaw: 0.465586] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.243958] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.102641] [Yaw: 0.433413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.051331] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.089350] [Yaw: 0.402230] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.926025] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.077422] [Yaw: 0.368512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.910645] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.069369] [Yaw: 0.336299] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.803833] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.056781] [Yaw: 0.305718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.746033] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.045122] [Yaw: 0.276542] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.929871] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036292] [Yaw: 0.243208] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.206970] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.027709] [Yaw: 0.208875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.485657] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.003052] [Yaw: 0.141619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.551270] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004923] [Yaw: 0.110722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.783020] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.015276] [Yaw: 0.083173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.036987] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029978] [Yaw: 0.048715] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.398132] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038148] [Yaw: 0.016037] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.781921] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.050330] [Yaw: -0.018307] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.260742] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063282] [Yaw: -0.053130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.720764] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072149] [Yaw: -0.083115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.282043] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080989] [Yaw: -0.116113] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.545593] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.093799] [Yaw: -0.144460] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.977844] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.103842] [Yaw: -0.176153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.511169] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.112161] [Yaw: -0.209427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.891602] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.119869] [Yaw: -0.234117] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.232117] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.134153] [Yaw: -0.264384] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.036865] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.144673] [Yaw: -0.300260] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.707397] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.367141] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.484558] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.389455] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.350220] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.355285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.295776] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.149714] [Yaw: -0.320425] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.839111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.142511] [Yaw: -0.291612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.460205] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.129626] [Yaw: -0.252788] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.248657] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.111423] [Yaw: -0.206476] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.081482] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.103068] [Yaw: -0.173055] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.055969] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.091379] [Yaw: -0.139620] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.951050] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.078773] [Yaw: -0.107248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.594727] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070744] [Yaw: -0.078899] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.353821] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063484] [Yaw: -0.053937] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.256836] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.052017] [Yaw: -0.021681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.393860] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039014] [Yaw: 0.012572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.394104] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.030786] [Yaw: 0.045485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.369202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013781] [Yaw: 0.022370] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.301392] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.001221] [Yaw: -0.024493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.405396] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.009490] [Yaw: -0.057568] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.660583] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.024883] [Yaw: -0.086344] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.918457] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034995] [Yaw: -0.120372] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.329529] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.043346] [Yaw: -0.153497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.593262] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067545] [Yaw: -0.218322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.576111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075164] [Yaw: -0.237255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.654785] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.083925] [Yaw: -0.212543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.559021] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.097809] [Yaw: -0.184774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.623596] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106851] [Yaw: -0.149069] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.548767] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114022] [Yaw: -0.120381] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.664795] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122815] [Yaw: -0.088327] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.121399] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138898] [Yaw: -0.060096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.240967] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147754] [Yaw: -0.014047] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.505310] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.040505] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.776733] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.073876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.044617] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.104118] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.020447] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.130326] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.658203] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.161375] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.546326] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.191188] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.708069] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.144339] [Yaw: 0.242251] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.930847] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.127388] [Yaw: 0.285389] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.995056] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115979] [Yaw: 0.316478] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.977966] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108276] [Yaw: 0.347289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.845764] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.099545] [Yaw: 0.331513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.717773] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084629] [Yaw: 0.298670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.691589] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075560] [Yaw: 0.273740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.916443] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.066366] [Yaw: 0.238614] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.128723] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049979] [Yaw: 0.203836] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.375366] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.040427] [Yaw: 0.165631] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.397644] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031677] [Yaw: 0.130628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.513184] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.017794] [Yaw: 0.099240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.541443] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006036] [Yaw: 0.067280] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.463257] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008515] [Yaw: 0.009077] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.201111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.025353] [Yaw: -0.031097] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035784] [Yaw: -0.068135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.963257] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.044855] [Yaw: -0.093631] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.545959] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059521] [Yaw: -0.124358] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067661] [Yaw: -0.156919] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.543823] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.075786] [Yaw: -0.189417] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.228760] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.086361] [Yaw: -0.221699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.577332] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100552] [Yaw: -0.231679] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.047607] [T/O: false ][Cruise: true ] +[Elevator: 0.101694] [Roll: -0.107977] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.284973] [T/O: false ][Cruise: true ] +[Elevator: 0.087844] [Roll: -0.116078] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.697510] [T/O: false ][Cruise: true ] +[Elevator: 0.080050] [Roll: -0.126175] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.939026] [T/O: false ][Cruise: true ] +[Elevator: 0.071653] [Roll: -0.140112] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.169128] [T/O: false ][Cruise: true ] +[Elevator: 0.061858] [Roll: -0.147502] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.381531] [T/O: false ][Cruise: true ] +[Elevator: 0.047982] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.736389] [T/O: false ][Cruise: true ] +[Elevator: 0.039525] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.660645] [T/O: false ][Cruise: true ] +[Elevator: 0.031849] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.936584] [T/O: false ][Cruise: true ] +[Elevator: 0.019993] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.925049] [T/O: false ][Cruise: true ] +[Elevator: 0.008256] [Roll: -0.149432] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.153687] [T/O: false ][Cruise: true ] +[Elevator: 0.000098] [Roll: -0.141274] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.250366] [T/O: false ][Cruise: true ] +[Elevator: -0.011536] [Roll: -0.129641] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.408203] [T/O: false ][Cruise: true ] +[Elevator: -0.023773] [Roll: -0.117404] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.388428] [T/O: false ][Cruise: true ] +[Elevator: -0.032331] [Roll: -0.108846] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.443359] [T/O: false ][Cruise: true ] +[Elevator: -0.041475] [Roll: -0.099702] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.345459] [T/O: false ][Cruise: true ] +[Elevator: -0.055897] [Roll: -0.085280] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.291504] [T/O: false ][Cruise: true ] +[Elevator: -0.065374] [Roll: -0.075802] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.092529] [T/O: false ][Cruise: true ] +[Elevator: -0.073455] [Roll: -0.067721] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.970459] [T/O: false ][Cruise: true ] +[Elevator: -0.089373] [Roll: -0.059235] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.556030] [T/O: false ][Cruise: true ] +[Elevator: -0.098130] [Roll: -0.043047] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.150391] [T/O: false ][Cruise: true ] +[Elevator: -0.106292] [Roll: -0.034885] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.522583] [T/O: false ][Cruise: true ] +[Elevator: -0.115337] [Roll: -0.025839] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.862061] [T/O: false ][Cruise: true ] +[Elevator: -0.131725] [Roll: -0.009451] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.194702] [T/O: false ][Cruise: true ] +[Elevator: -0.146081] [Roll: 0.004905] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.283203] [T/O: false ][Cruise: true ] +[Elevator: -0.155233] [Roll: 0.014057] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.412109] [T/O: false ][Cruise: true ] +[Elevator: -0.170065] [Roll: 0.028889] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.391846] [T/O: false ][Cruise: true ] +[Elevator: -0.177285] [Roll: 0.036108] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.306885] [T/O: false ][Cruise: true ] +[Elevator: -0.187017] [Roll: 0.044489] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.277344] [T/O: false ][Cruise: true ] +[Elevator: -0.202008] [Roll: 0.054997] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.941650] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.068480] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.613647] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.076367] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.098999] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.085047] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.533325] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.099894] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.897095] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.108576] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.058350] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.117011] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.204834] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.127920] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.059814] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.141866] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.927612] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.149275] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.573730] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.147583] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.551270] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.878174] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.024414] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.080200] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.147631] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.915283] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.139331] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.688843] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.126358] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.320435] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.111307] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.856201] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.099851] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.201660] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.086792] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.399414] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.075583] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.196899] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.067240] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.330566] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.052443] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.958862] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.043207] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.480347] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.025592] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.705566] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.009386] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.810669] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.000723] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.220459] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.007222] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.274719] [T/O: false ][Cruise: true ] +[Elevator: -0.204133] [Roll: -0.019185] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.409851] [T/O: false ][Cruise: true ] +[Elevator: -0.191385] [Roll: -0.031759] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.063782] [T/O: false ][Cruise: true ] +[Elevator: -0.179048] [Roll: -0.040560] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.341858] [T/O: false ][Cruise: true ] +[Elevator: -0.157415] [Roll: -0.062192] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.817322] [T/O: false ][Cruise: true ] +[Elevator: -0.146710] [Roll: -0.072898] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.424072] [T/O: false ][Cruise: true ] +[Elevator: -0.138942] [Roll: -0.080666] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.796387] [T/O: false ][Cruise: true ] +[Elevator: -0.131331] [Roll: -0.094202] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.173584] [T/O: false ][Cruise: true ] +[Elevator: -0.117178] [Roll: -0.104156] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.108301] [Roll: -0.111307] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.554749] [T/O: false ][Cruise: true ] +[Elevator: -0.099275] [Roll: -0.120333] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.733826] [T/O: false ][Cruise: true ] +[Elevator: -0.091854] [Roll: -0.133939] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.509521] [T/O: false ][Cruise: true ] +[Elevator: -0.076951] [Roll: -0.143877] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.269592] [T/O: false ][Cruise: true ] +[Elevator: -0.068092] [Roll: -0.151516] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.420776] [T/O: false ][Cruise: true ] +[Elevator: -0.060570] [Roll: -0.146844] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.902466] [T/O: false ][Cruise: true ] +[Elevator: -0.038840] [Roll: -0.125115] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.538391] [T/O: false ][Cruise: true ] +[Elevator: -0.028352] [Roll: -0.114626] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.426514] [T/O: false ][Cruise: true ] +[Elevator: -0.020150] [Roll: -0.106425] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.957764] [T/O: false ][Cruise: true ] +[Elevator: -0.004798] [Roll: -0.098477] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.573486] [T/O: false ][Cruise: true ] +[Elevator: 0.004860] [Roll: -0.081414] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.117676] [T/O: false ][Cruise: true ] +[Elevator: 0.012434] [Roll: -0.074175] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.693054] [T/O: false ][Cruise: true ] +[Elevator: 0.028554] [Roll: -0.065563] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.115662] [T/O: false ][Cruise: true ] +[Elevator: 0.036768] [Roll: -0.055875] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.153625] [T/O: false ][Cruise: true ] +[Elevator: 0.044586] [Roll: -0.041689] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.945251] [T/O: false ][Cruise: true ] +[Elevator: 0.053393] [Roll: -0.034088] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.021118] [T/O: false ][Cruise: true ] +[Elevator: 0.068062] [Roll: -0.024661] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.649719] [T/O: false ][Cruise: true ] +[Elevator: 0.076774] [Roll: -0.009501] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.936462] [T/O: false ][Cruise: true ] +[Elevator: 0.087152] [Roll: -0.000722] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.843506] [T/O: false ][Cruise: true ] +[Elevator: 0.108529] [Roll: 0.017058] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.906555] [T/O: false ][Cruise: true ] +[Elevator: 0.117019] [Roll: 0.030744] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.635986] [T/O: false ][Cruise: true ] +[Elevator: 0.126650] [Roll: 0.037835] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.974304] [T/O: false ][Cruise: true ] +[Elevator: 0.140161] [Roll: 0.046044] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.041870] [T/O: false ][Cruise: true ] +[Elevator: 0.148158] [Roll: 0.057100] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.709106] [T/O: false ][Cruise: true ] +[Elevator: 0.156245] [Roll: 0.069970] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.214966] [T/O: false ][Cruise: true ] +[Elevator: 0.166226] [Roll: 0.077231] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.235840] [T/O: false ][Cruise: true ] +[Elevator: 0.182000] [Roll: 0.090647] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.803772] [T/O: false ][Cruise: true ] +[Elevator: 0.195333] [Roll: 0.109058] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.242554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.117529] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.294800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.129137] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.430908] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.141297] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.870178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.149428] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.727844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.733521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.223633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.838562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.149923] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.654846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.143871] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.013611] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.134147] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.436218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.119500] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.428040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.111280] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.675171] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.102815] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.223877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.091579] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.228455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.075902] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.257629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060483] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.166077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.048231] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.983215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040672] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.351440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.032759] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.909607] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.024097] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.181885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.011253] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.501038] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.002959] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.807007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.011859] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.634094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.024633] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.768433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.033368] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.327942] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.041494] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.178528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.057413] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.175781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.064218] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.963196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.071769] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.145935] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.087782] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.891968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.102008] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.727661] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.109211] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.156067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.116424] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.581116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.131126] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.536743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.148697] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.956116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.176941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.687805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.862366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.207825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.805786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.799805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.690918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150359] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.101074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.142206] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.663696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.135093] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.583618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120936] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.613159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.113110] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.895386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.097233] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.152466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.082065] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.063721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.074848] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.238892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.067051] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.740967] [T/O: false ][Cruise: true ] +[Elevator: 0.199859] [Roll: -0.058542] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.902100] [T/O: false ][Cruise: true ] +[Elevator: 0.193393] [Roll: -0.045610] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.248657] [T/O: false ][Cruise: true ] +[Elevator: 0.179412] [Roll: -0.030392] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.166167] [Roll: -0.017147] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.156982] [T/O: false ][Cruise: true ] +[Elevator: 0.155572] [Roll: -0.006552] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.814941] [T/O: false ][Cruise: true ] +[Elevator: 0.148058] [Roll: 0.000961] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.836670] [T/O: false ][Cruise: true ] +[Elevator: 0.140375] [Roll: 0.008644] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.666382] [T/O: false ][Cruise: true ] +[Elevator: 0.127946] [Roll: 0.021074] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.306274] [T/O: false ][Cruise: true ] +[Elevator: 0.113304] [Roll: 0.035715] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.812256] [T/O: false ][Cruise: true ] +[Elevator: 0.099178] [Roll: 0.046489] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.384155] [T/O: false ][Cruise: true ] +[Elevator: 0.086717] [Roll: 0.057939] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.339966] [T/O: false ][Cruise: true ] +[Elevator: 0.078427] [Roll: 0.070592] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.932007] [T/O: false ][Cruise: true ] +[Elevator: 0.070242] [Roll: 0.078778] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.267334] [T/O: false ][Cruise: true ] +[Elevator: 0.057995] [Roll: 0.091024] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.483032] [T/O: false ][Cruise: true ] +[Elevator: 0.041761] [Roll: 0.107259] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.677368] [T/O: false ][Cruise: true ] +[Elevator: 0.030274] [Roll: 0.118745] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.883179] [T/O: false ][Cruise: true ] +[Elevator: 0.017271] [Roll: 0.131749] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.593018] [T/O: false ][Cruise: true ] +[Elevator: 0.006887] [Roll: 0.142133] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.398315] [T/O: false ][Cruise: true ] +[Elevator: -0.000632] [Roll: 0.149652] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.119873] [T/O: false ][Cruise: true ] +[Elevator: -0.010978] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.702515] [T/O: false ][Cruise: true ] +[Elevator: -0.025629] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.022949] [T/O: false ][Cruise: true ] +[Elevator: -0.038144] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.881836] [T/O: false ][Cruise: true ] +[Elevator: -0.047629] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.390381] [T/O: false ][Cruise: true ] +[Elevator: -0.060757] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.385986] [T/O: false ][Cruise: true ] +[Elevator: -0.068929] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.038086] [T/O: false ][Cruise: true ] +[Elevator: -0.078116] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.918091] [T/O: false ][Cruise: true ] +[Elevator: -0.091164] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.462769] [T/O: false ][Cruise: true ] +[Elevator: -0.099466] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.138428] [T/O: false ][Cruise: true ] +[Elevator: -0.106427] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.180420] [T/O: false ][Cruise: true ] +[Elevator: -0.129831] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.397583] [T/O: false ][Cruise: true ] +[Elevator: -0.136359] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.232910] [T/O: false ][Cruise: true ] +[Elevator: -0.144709] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.289917] [T/O: false ][Cruise: true ] +[Elevator: -0.151679] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.570435] [T/O: false ][Cruise: true ] +[Elevator: -0.165155] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.579712] [T/O: false ][Cruise: true ] +[Elevator: -0.174731] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.821777] [T/O: false ][Cruise: true ] +[Elevator: -0.197269] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.339966] [T/O: false ][Cruise: true ] +[Elevator: -0.206227] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.604370] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.825928] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.182739] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.126709] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.212891] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.868286] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.323853] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.459106] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.366821] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.567627] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.098999] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.703491] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.095703] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.153076] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.148071] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.827515] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.262939] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.603760] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.738647] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.783936] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.453735] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.029541] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.349731] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.490967] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.088867] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.676880] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.862549] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.665405] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.107910] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.403442] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.050903] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.788696] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.076538] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.099609] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.972534] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.313965] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.596802] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.272705] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.535034] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.354126] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.361694] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.276978] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.095825] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.120239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.771851] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.043823] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.895508] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.010254] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.858887] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.156006] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.823608] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.639771] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.387939] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.549927] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.933716] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.721558] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.142760] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.218384] [T/O: false ][Cruise: true ] +[Elevator: -0.200785] [Roll: 0.123139] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.325562] [T/O: false ][Cruise: true ] +[Elevator: -0.184258] [Roll: 0.113670] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.083740] [T/O: false ][Cruise: true ] +[Elevator: -0.176422] [Roll: 0.105834] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.290894] [T/O: false ][Cruise: true ] +[Elevator: -0.168431] [Roll: 0.097843] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.736328] [T/O: false ][Cruise: true ] +[Elevator: -0.153626] [Roll: 0.083038] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.103516] [T/O: false ][Cruise: true ] +[Elevator: -0.145268] [Roll: 0.074679] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.574097] [T/O: false ][Cruise: true ] +[Elevator: -0.130151] [Roll: 0.052090] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.952637] [T/O: false ][Cruise: true ] +[Elevator: -0.113290] [Roll: 0.042702] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.459595] [T/O: false ][Cruise: true ] +[Elevator: -0.105328] [Roll: 0.034740] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.237061] [T/O: false ][Cruise: true ] +[Elevator: -0.097550] [Roll: 0.026472] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.033936] [T/O: false ][Cruise: true ] +[Elevator: -0.088466] [Roll: 0.010900] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.702759] [T/O: false ][Cruise: true ] +[Elevator: -0.073738] [Roll: 0.003150] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.447266] [T/O: false ][Cruise: true ] +[Elevator: -0.064747] [Roll: -0.005841] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.916138] [T/O: false ][Cruise: true ] +[Elevator: -0.042305] [Roll: -0.028283] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.815552] [T/O: false ][Cruise: true ] +[Elevator: -0.034542] [Roll: -0.036046] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.250977] [T/O: false ][Cruise: true ] +[Elevator: -0.023574] [Roll: -0.050891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.863403] [T/O: false ][Cruise: true ] +[Elevator: -0.010337] [Roll: -0.063459] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.497314] [T/O: false ][Cruise: true ] +[Elevator: 0.001732] [Roll: -0.072320] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.692749] [T/O: false ][Cruise: true ] +[Elevator: 0.009405] [Roll: -0.079993] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.841187] [T/O: false ][Cruise: true ] +[Elevator: 0.027980] [Roll: -0.098568] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.921570] [T/O: false ][Cruise: true ] +[Elevator: 0.040891] [Roll: -0.111479] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.484924] [T/O: false ][Cruise: true ] +[Elevator: 0.049401] [Roll: -0.119989] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.301208] [T/O: false ][Cruise: true ] +[Elevator: 0.063996] [Roll: -0.134584] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.116028] [T/O: false ][Cruise: true ] +[Elevator: 0.072598] [Roll: -0.143186] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.998657] [T/O: false ][Cruise: true ] +[Elevator: 0.080126] [Roll: -0.139482] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.303955] [T/O: false ][Cruise: true ] +[Elevator: 0.087919] [Roll: -0.126123] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.740479] [T/O: false ][Cruise: true ] +[Elevator: 0.100338] [Roll: -0.116498] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.066711] [T/O: false ][Cruise: true ] +[Elevator: 0.111356] [Roll: -0.108252] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.590454] [T/O: false ][Cruise: true ] +[Elevator: 0.131108] [Roll: -0.088500] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.964233] [T/O: false ][Cruise: true ] +[Elevator: 0.143062] [Roll: -0.076546] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.590027] [T/O: false ][Cruise: true ] +[Elevator: 0.151121] [Roll: -0.068487] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.171265] [T/O: false ][Cruise: true ] +[Elevator: 0.157856] [Roll: -0.061752] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.989868] [T/O: false ][Cruise: true ] +[Elevator: 0.169845] [Roll: -0.049763] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.354126] [T/O: false ][Cruise: true ] +[Elevator: 0.180183] [Roll: -0.039425] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.830200] [T/O: false ][Cruise: true ] +[Elevator: 0.190937] [Roll: -0.025359] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.326355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.008760] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.195801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.001675] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.783875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.005626] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.334351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.014297] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.645020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.028193] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.419678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.036243] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050377] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.763916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.064046] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.010925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.072501] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.404114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.079788] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.889954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.091854] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.338745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.106033] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.832520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.117165] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.821411] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.127179] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.069397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.139393] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.435791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.146832] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.868225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.191284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152816] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.064087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.145638] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.938782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.124854] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.256165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.115058] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.559814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.107790] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.323059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100483] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.013367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.088985] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.335693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.076439] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.066040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.055579] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.342957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.045311] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.406189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.037718] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.554810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.029856] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.947266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.016920] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.007874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.006962] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.220642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.000836] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.141174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.017500] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.405396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.031514] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.175720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.039299] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.615723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.051302] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.599548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.066105] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.056458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.077794] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.256409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.087701] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.999329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100417] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.149292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110253] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.580994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.126535] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.531128] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.139690] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.083313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.146935] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.708801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.514221] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.292603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.751709] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.760254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.474060] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.241150] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.545166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.963013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.890015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.562500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.374756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150217] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.344482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.142792] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.248901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.134150] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.815918] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120561] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.654175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.113517] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.798950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.099435] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.612427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.085537] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.244385] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.077077] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.905884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070581] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.943481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.057201] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.177368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040434] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.919067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.033402] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.713867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.024251] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.250000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.003664] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.696289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.003358] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.023193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.009834] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.139893] [T/O: false ][Cruise: true ] +[Elevator: 0.194666] [Roll: 0.022433] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.365723] [T/O: false ][Cruise: true ] +[Elevator: 0.183072] [Roll: 0.036536] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.265869] [T/O: false ][Cruise: true ] +[Elevator: 0.169453] [Roll: 0.046646] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.649292] [T/O: false ][Cruise: true ] +[Elevator: 0.158616] [Roll: 0.055317] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.260742] [T/O: false ][Cruise: true ] +[Elevator: 0.150124] [Roll: 0.069484] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.832031] [T/O: false ][Cruise: true ] +[Elevator: 0.135356] [Roll: 0.084252] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.552979] [T/O: false ][Cruise: true ] +[Elevator: 0.121141] [Roll: 0.098467] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.935425] [T/O: false ][Cruise: true ] +[Elevator: 0.114072] [Roll: 0.105536] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.763062] [T/O: false ][Cruise: true ] +[Elevator: 0.107085] [Roll: 0.112522] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.650757] [T/O: false ][Cruise: true ] +[Elevator: 0.088616] [Roll: 0.130992] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.260132] [T/O: false ][Cruise: true ] +[Elevator: 0.077530] [Roll: 0.142078] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.382080] [T/O: false ][Cruise: true ] +[Elevator: -0.179361] [Roll: 0.152150] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.116577] [T/O: false ][Cruise: true ] +[Elevator: 0.119737] [Roll: 0.099871] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.718994] [T/O: false ][Cruise: true ] +[Elevator: 0.176654] [Roll: 0.042954] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.907837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010206] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.001831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.071100] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.612793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120209] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.533325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.846375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.727844] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150578] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.749817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.098103] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.011292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.038718] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.237366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.015952] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.525879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070424] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.987610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.117735] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.272583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.144265] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.992126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.086878] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.097839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.033495] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.686462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010858] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.953186] [T/O: false ][Cruise: true ] +[Elevator: 0.150936] [Roll: -0.068672] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.951538] [T/O: false ][Cruise: true ] +[Elevator: 0.095135] [Roll: -0.119099] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.666260] [T/O: false ][Cruise: true ] +[Elevator: 0.054071] [Roll: -0.124659] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.531860] [T/O: false ][Cruise: true ] +[Elevator: -0.000565] [Roll: -0.070023] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.428711] [T/O: false ][Cruise: true ] +[Elevator: -0.042640] [Roll: -0.027948] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.807739] [T/O: false ][Cruise: true ] +[Elevator: -0.100639] [Roll: 0.030051] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.573608] [T/O: false ][Cruise: true ] +[Elevator: -0.151255] [Roll: 0.080667] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.209106] [T/O: false ][Cruise: true ] +[Elevator: -0.202027] [Roll: 0.125622] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.380737] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.894775] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.005249] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.003540] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.749878] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.739868] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.246704] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.007690] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.699097] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.770020] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.976685] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.745850] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.820801] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.656494] [T/O: false ][Cruise: true ] +[Elevator: -0.159746] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.797241] [T/O: false ][Cruise: true ] +[Elevator: -0.102846] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.513916] [T/O: false ][Cruise: true ] +[Elevator: -0.058900] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.945557] [T/O: false ][Cruise: true ] +[Elevator: -0.000647] [Roll: 0.149667] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.451538] [T/O: false ][Cruise: true ] +[Elevator: 0.052578] [Roll: 0.096442] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.416382] [T/O: false ][Cruise: true ] +[Elevator: 0.101642] [Roll: 0.045258] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.400879] [T/O: false ][Cruise: true ] +[Elevator: 0.155922] [Roll: -0.006903] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.460327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.067410] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.781006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120455] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.090576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.826294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.399109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.109162] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.545715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.058890] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.681519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.008469] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.201782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.036117] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.739807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.088363] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.589905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.137765] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.386108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.402283] [T/O: false ][Cruise: true ] +[Elevator: 0.198803] [Roll: 0.112528] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.137268] [T/O: false ][Cruise: true ] +[Elevator: 0.144839] [Roll: 0.050721] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.259155] [T/O: false ][Cruise: true ] +[Elevator: 0.087929] [Roll: -0.000204] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.920044] [T/O: false ][Cruise: true ] +[Elevator: 0.041105] [Roll: -0.047202] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.142395] [T/O: false ][Cruise: true ] +[Elevator: -0.002106] [Roll: -0.094409] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.322815] [T/O: false ][Cruise: true ] +[Elevator: -0.061382] [Roll: -0.147656] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.513916] [T/O: false ][Cruise: true ] +[Elevator: -0.102129] [Roll: -0.117479] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.380615] [T/O: false ][Cruise: true ] +[Elevator: -0.146887] [Roll: -0.072721] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.504456] [T/O: false ][Cruise: true ] +[Elevator: -0.206945] [Roll: -0.013561] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.122681] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.035992] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.326172] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.088526] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.144751] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.110962] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.068115] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.120510] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.234009] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.072112] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.749878] [T/O: false ][Cruise: true ] +[Elevator: -0.164706] [Roll: 0.023530] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.625366] [T/O: false ][Cruise: true ] +[Elevator: -0.101859] [Roll: -0.039317] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.071045] [T/O: false ][Cruise: true ] +[Elevator: -0.053723] [Roll: -0.087453] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.923340] [T/O: false ][Cruise: true ] +[Elevator: -0.001421] [Roll: -0.139756] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.196716] [T/O: false ][Cruise: true ] +[Elevator: 0.042560] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.246338] [T/O: false ][Cruise: true ] +[Elevator: 0.086723] [Roll: -0.117198] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.964539] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074340] [Yaw: -0.183634] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.193542] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.027688] [Yaw: -0.036241] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.762512] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034181] [Yaw: 0.140645] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.218384] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079999] [Yaw: 0.287057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.380798] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.135428] [Yaw: 0.273329] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.760986] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.094937] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.741028] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.126868] [Yaw: -0.082247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.172424] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076665] [Yaw: -0.232752] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.888855] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.014802] [Yaw: -0.071222] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.294556] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.040235] [Yaw: 0.007687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.047424] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.090098] [Yaw: -0.137060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.389954] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.149796] [Yaw: -0.320751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.588989] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.140342] [Yaw: -0.282936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.406372] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.092045] [Yaw: -0.140953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.440674] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038335] [Yaw: 0.015288] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.038879] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010528] [Yaw: 0.162716] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.005737] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.069943] [Yaw: 0.338594] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.575806] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114353] [Yaw: 0.472000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.025513] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.293601] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.963074] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.166681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.568665] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.112427] [Yaw: -0.009116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.836060] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.053604] [Yaw: 0.109790] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.935913] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007304] [Yaw: 0.221374] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.667358] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.044248] [Yaw: 0.056602] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.006958] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.098643] [Yaw: -0.092612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.789490] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143375] [Yaw: -0.071836] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.752197] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138271] [Yaw: 0.086131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.458435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074065] [Yaw: 0.271922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.027344] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.024165] [Yaw: 0.424537] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.580750] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036556] [Yaw: 0.351814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.642761] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.087294] [Yaw: 0.197962] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.449768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.145527] [Yaw: 0.209557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.611938] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.359255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.070435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138821] [Yaw: 0.331755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.965942] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080095] [Yaw: 0.167439] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.395081] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.037097] [Yaw: 0.034660] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.366821] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023426] [Yaw: -0.144892] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.124634] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072900] [Yaw: -0.190755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.208984] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.127147] [Yaw: -0.024137] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.752014] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.129593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.781311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.137271] [Yaw: 0.294070] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 649.471802] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.083731] [Yaw: 0.147854] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.888672] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.037058] [Yaw: 0.003136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.354065] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.017064] [Yaw: 0.098146] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.520447] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.071582] [Yaw: 0.258875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.274048] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.125493] [Yaw: 0.425495] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.552246] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.463120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.865784] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149137] [Yaw: 0.310273] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.549316] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101876] [Yaw: 0.160446] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.088806] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039379] [Yaw: -0.018953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.565857] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008667] [Yaw: -0.171925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.140778] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060474] [Yaw: -0.308562] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.736664] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.109515] [Yaw: -0.436449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.823456] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.253506] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.353851] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143533] [Yaw: -0.115310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.716827] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.096912] [Yaw: -0.037548] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.365143] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043982] [Yaw: -0.113363] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.175232] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006421] [Yaw: 0.037447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.472351] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075937] [Yaw: 0.244924] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.281372] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.119572] [Yaw: 0.380250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.516479] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.234440] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.701721] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.121804] [Yaw: 0.059294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.535339] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075739] [Yaw: -0.086507] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.956573] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.027237] [Yaw: -0.003493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.403107] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.019104] [Yaw: 0.044146] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.338531] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080416] [Yaw: -0.145194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.873444] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.125823] [Yaw: -0.279096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.673798] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.292061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.480682] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.123489] [Yaw: -0.156782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.995941] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077104] [Yaw: -0.014298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.856995] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028464] [Yaw: 0.141045] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.858551] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.028611] [Yaw: 0.298757] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.837433] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076295] [Yaw: 0.450279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.884644] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.129831] [Yaw: 0.340338] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.540436] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.183921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.193268] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.035739] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.744141] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.121885] [Yaw: 0.089353] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.459381] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074214] [Yaw: 0.240401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.133209] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029112] [Yaw: 0.214485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.384125] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034688] [Yaw: 0.029875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.636597] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.082051] [Yaw: -0.120362] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.271698] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.137790] [Yaw: -0.150800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.476868] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151995] [Yaw: 0.031234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.140533] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.105143] [Yaw: 0.179429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.971436] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.058395] [Yaw: 0.326347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.139145] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002893] [Yaw: 0.478625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.400894] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042783] [Yaw: 0.389653] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.338943] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.102764] [Yaw: 0.220317] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.253372] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.325329] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.177795] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.142318] [Yaw: 0.345742] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.180008] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.086718] [Yaw: 0.185201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.613144] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.026815] [Yaw: -0.005194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.100716] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023779] [Yaw: -0.145597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.355042] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.083785] [Yaw: -0.212823] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.674370] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139424] [Yaw: -0.057991] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.786255] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116939] [Yaw: 0.104085] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.012840] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.062094] [Yaw: -0.053585] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.693871] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002580] [Yaw: -0.147574] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.577805] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046000] [Yaw: 0.007531] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.854116] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101224] [Yaw: 0.157837] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.645409] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079168] [Yaw: 0.104169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.494537] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031273] [Yaw: -0.051379] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.247767] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031867] [Yaw: -0.135277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.598708] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060147] [Yaw: -0.009214] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.351185] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005610] [Yaw: 0.138344] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.274285] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.017176] [Yaw: 0.069646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.245056] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036585] [Yaw: -0.095360] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228964] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.078850] [Yaw: -0.052654] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224715] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.027680] [Yaw: 0.113038] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228922] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.007364] [Yaw: 0.256818] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221940] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066761] [Yaw: 0.089820] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204403] [T/O: false ][Cruise: true ] +[Elevator: 0.071910] [Roll: -0.032694] [Yaw: -0.074468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.094501] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189063] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.072388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183770] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.232262] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184400] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.396109] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178772] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176009] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173770] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169071] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168056] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168014] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166214] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162609] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157711] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150826] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146657] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144281] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139329] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127231] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.371264] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114515] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.241585] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105282] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.102882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106129] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121768] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143039] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147521] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149539] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148302] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149048] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148694] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.159020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.169020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.179020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.189020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.199020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148935] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148870] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148675] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149032] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148293] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149684] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148155] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146136] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133843] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113216] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104682] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.093166] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.021765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: -0.031765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: -0.041765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: -0.051765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: -0.061765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: -0.071765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: -0.081765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: -0.091765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: -0.101765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: -0.111765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: -0.121765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105160] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: -0.131765] [Yaw: 0.130054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105196] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.133681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105272] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.138569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105436] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.143783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105777] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.149607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106116] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.155368] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106445] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.161122] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107658] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.189121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109261] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.216603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111085] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.243039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113136] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.269193] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114978] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.287833] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117141] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.312326] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119236] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.337222] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121490] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.362721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123961] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.391412] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126530] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.417454] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129118] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.438882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131696] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.466644] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134162] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.493581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136559] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138128] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139623] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141027] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141936] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143612] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144207] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144793] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145089] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145307] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145529] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146373] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147239] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148034] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148602] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149223] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150082] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151258] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152388] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153690] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155025] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156352] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157602] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158800] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160637] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161262] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162667] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163406] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164195] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165082] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165915] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166107] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166291] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166584] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167067] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167510] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167835] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168067] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168304] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168292] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168279] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168232] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168117] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167989] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167953] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167986] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168018] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168461] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168937] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169436] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169976] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170465] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171459] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172648] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173703] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174500] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175222] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175694] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175776] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175862] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176028] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176215] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176449] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176806] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177173] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178038] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179037] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.479277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180249] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.449473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181684] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.425110] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183109] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.397913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183746] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.368714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184496] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.338398] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184796] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.310190] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184601] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.281187] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184398] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.252512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184144] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.221498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183876] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.191066] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184143] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.164371] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185016] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.132949] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185905] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.105409] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186956] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.082320] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187933] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.052029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188837] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.024201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189572] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.007739] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190394] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.042470] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191279] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.072604] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192025] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.095469] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193902] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196397] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.126578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199208] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.148353] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201314] [T/O: false ][Cruise: true ] +[Elevator: 0.053348] [Roll: -0.014133] [Yaw: -0.116833] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203365] [T/O: false ][Cruise: true ] +[Elevator: 0.068075] [Roll: -0.028859] [Yaw: -0.085971] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204020] [T/O: false ][Cruise: true ] +[Elevator: 0.075635] [Roll: -0.036419] [Yaw: -0.062165] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204324] [T/O: false ][Cruise: true ] +[Elevator: 0.083270] [Roll: -0.044972] [Yaw: -0.031624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205789] [T/O: false ][Cruise: true ] +[Elevator: 0.092073] [Roll: -0.059762] [Yaw: -0.000168] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209304] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067361] [Yaw: 0.030229] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212471] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074121] [Yaw: 0.060380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066908] [Yaw: 0.089231] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219240] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059729] [Yaw: 0.111010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222446] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043799] [Yaw: 0.143774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224554] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035364] [Yaw: 0.176189] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226692] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.027112] [Yaw: 0.208520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227665] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013074] [Yaw: 0.236597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228649] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005600] [Yaw: 0.263876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229170] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.002410] [Yaw: 0.245264] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228763] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010685] [Yaw: 0.212161] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.024355] [Yaw: 0.182663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227291] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033312] [Yaw: 0.153027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226171] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.028589] [Yaw: 0.118277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033199] [Yaw: 0.096482] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224802] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.040818] [Yaw: 0.068102] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224218] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.047918] [Yaw: 0.039700] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224603] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.060418] [Yaw: 0.008575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225030] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.071043] [Yaw: -0.021428] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225934] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.078564] [Yaw: -0.051510] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227365] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.078569] [Yaw: -0.078018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228999] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.071170] [Yaw: -0.103556] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231256] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.060139] [Yaw: -0.134624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.233779] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.047643] [Yaw: -0.139592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.236532] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.040651] [Yaw: -0.111623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.239834] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033477] [Yaw: -0.084743] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243120] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.024159] [Yaw: -0.060083] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.247765] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.009574] [Yaw: -0.026531] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.252461] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.001880] [Yaw: 0.004243] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256998] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005685] [Yaw: 0.034503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262606] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.013807] [Yaw: 0.062907] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.268263] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029052] [Yaw: 0.094998] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.275496] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034901] [Yaw: 0.115300] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.283007] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.026887] [Yaw: 0.146225] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.293571] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.012014] [Yaw: 0.175972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.306476] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004383] [Yaw: 0.146946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.320167] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.011205] [Yaw: 0.115963] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.348620] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.025450] [Yaw: 0.093198] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.378498] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034312] [Yaw: 0.062751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.411450] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.041785] [Yaw: 0.032861] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.465179] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.056721] [Yaw: 0.000284] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.515920] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.065380] [Yaw: -0.030147] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.600244] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059819] [Yaw: -0.062684] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.686166] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.044780] [Yaw: -0.087731] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.793915] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035921] [Yaw: -0.119061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.918164] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.051519] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028153] [Yaw: -0.150135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.213115] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.006839] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.383419] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.002274] [Yaw: -0.128158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.572587] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.009717] [Yaw: -0.098386] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.802134] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.022941] [Yaw: -0.073432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.031324] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032584] [Yaw: -0.046133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.307190] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039218] [Yaw: -0.019598] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.578903] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046453] [Yaw: 0.009340] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.904205] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.055600] [Yaw: 0.036690] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.279800] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.069032] [Yaw: 0.068285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.665812] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076092] [Yaw: 0.094941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.107006] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084694] [Yaw: 0.118408] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.582548] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098676] [Yaw: 0.147645] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.129200] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106139] [Yaw: 0.177497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.695232] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.113214] [Yaw: 0.205798] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.211512] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.106750] [Yaw: 0.179941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.892700] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.099185] [Yaw: 0.149680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.523106] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.085452] [Yaw: 0.119924] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.296240] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075812] [Yaw: 0.094103] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.087450] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.068072] [Yaw: 0.064447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.915766] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.052848] [Yaw: 0.031186] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.842695] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.045325] [Yaw: 0.004829] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.685585] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038024] [Yaw: -0.024376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.690378] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.030117] [Yaw: -0.056003] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.720409] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.019487] [Yaw: -0.078613] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.764780] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008001] [Yaw: -0.105250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.049076] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000032] [Yaw: -0.137381] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.302650] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.007617] [Yaw: -0.167723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.711922] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.019405] [Yaw: -0.169034] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.177017] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031440] [Yaw: -0.136987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.662590] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039675] [Yaw: -0.104046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.239788] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.051081] [Yaw: -0.078280] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.715771] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066073] [Yaw: -0.037668] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.238178] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077034] [Yaw: 0.006174] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.992256] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.087197] [Yaw: 0.037140] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.703682] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.099963] [Yaw: 0.066520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.520058] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.107532] [Yaw: 0.095145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.264503] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114170] [Yaw: 0.112392] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.304348] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.123609] [Yaw: 0.086115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.496464] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138563] [Yaw: 0.053590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.483406] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.145116] [Yaw: 0.027380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.594242] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152109] [Yaw: -0.000594] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.937443] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.146468] [Yaw: -0.029814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.064880] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139679] [Yaw: -0.056972] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.495979] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.127795] [Yaw: -0.080857] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.545090] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.118110] [Yaw: -0.104030] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.158554] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.110187] [Yaw: -0.135722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.887802] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.102733] [Yaw: -0.165539] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.569038] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.092752] [Yaw: -0.194887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.346550] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.080116] [Yaw: -0.222397] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.192307] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070516] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.804855] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.057457] [Yaw: -0.237165] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.477608] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043006] [Yaw: -0.215163] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.607079] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034377] [Yaw: -0.180643] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.740959] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.024558] [Yaw: -0.147156] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.560623] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.011410] [Yaw: -0.120151] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.493950] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004103] [Yaw: -0.090921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.305069] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.003518] [Yaw: -0.067879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.502525] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010181] [Yaw: -0.041628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.614670] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.023147] [Yaw: -0.012530] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.641029] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032470] [Yaw: 0.016153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.104881] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.040116] [Yaw: 0.046740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.577042] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.056845] [Yaw: 0.090807] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.689934] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070651] [Yaw: 0.129664] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.889351] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.078025] [Yaw: 0.159158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.260284] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.088718] [Yaw: 0.189200] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.763817] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100526] [Yaw: 0.217789] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.157349] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108223] [Yaw: 0.248580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.723999] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.116144] [Yaw: 0.277845] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.291046] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.125196] [Yaw: 0.301373] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.855057] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138831] [Yaw: 0.331794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.490067] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146485] [Yaw: 0.362411] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.243073] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.392320] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.448746] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.416618] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.192093] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.385406] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.383987] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.357449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.797134] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.330558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.422546] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.300856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.056412] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146749] [Yaw: 0.275541] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.769135] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.139177] [Yaw: 0.246904] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.273743] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122182] [Yaw: 0.199022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.723785] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108949] [Yaw: 0.195576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.330658] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101372] [Yaw: 0.225886] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.994873] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.089844] [Yaw: 0.255607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.724548] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.078674] [Yaw: 0.281625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.603729] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070707] [Yaw: 0.309330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.357956] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.058816] [Yaw: 0.341191] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.714478] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.047867] [Yaw: 0.369317] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.958893] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036518] [Yaw: 0.414711] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.626740] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029200] [Yaw: 0.437890] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.018768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.017620] [Yaw: 0.462800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.372879] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007131] [Yaw: 0.493046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.074890] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.001163] [Yaw: 0.485543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.734146] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.009334] [Yaw: 0.452861] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.355301] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023512] [Yaw: 0.425516] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.146454] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.032962] [Yaw: 0.397563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.753799] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.040309] [Yaw: 0.368177] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.469757] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.053548] [Yaw: 0.336041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.013962] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063862] [Yaw: 0.305336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.259918] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.071075] [Yaw: 0.280893] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.491577] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.078167] [Yaw: 0.255958] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.156677] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.089686] [Yaw: 0.224549] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.416412] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.101525] [Yaw: 0.193901] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.638458] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.108582] [Yaw: 0.165673] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.023590] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116876] [Yaw: 0.132497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.473541] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.128148] [Yaw: 0.103856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.810791] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.140347] [Yaw: 0.077826] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.840454] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.147653] [Yaw: 0.048604] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.803986] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.016702] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.947723] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.012482] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.464813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.038723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.420685] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152550] [Yaw: -0.069408] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.439758] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.144937] [Yaw: -0.122211] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.291748] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.137794] [Yaw: -0.150785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.083435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.122188] [Yaw: -0.183075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.946808] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114764] [Yaw: -0.211530] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.511322] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.107703] [Yaw: -0.191597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.393524] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100029] [Yaw: -0.160902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.093842] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.086879] [Yaw: -0.130621] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.820892] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.076896] [Yaw: -0.099741] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.448486] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.069839] [Yaw: -0.076182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.983398] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.062492] [Yaw: -0.049969] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.424164] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.050926] [Yaw: -0.019499] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.085419] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038101] [Yaw: 0.016223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.770691] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029987] [Yaw: 0.048681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.935944] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.016915] [Yaw: 0.079895] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.490265] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005731] [Yaw: 0.108298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.805084] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.001685] [Yaw: 0.136153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.847107] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.016975] [Yaw: 0.179906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.968323] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031683] [Yaw: 0.224770] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.028839] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039073] [Yaw: 0.254332] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.156006] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046675] [Yaw: 0.281201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.217468] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057353] [Yaw: 0.284559] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.319336] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070338] [Yaw: 0.255901] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.383667] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.077585] [Yaw: 0.226916] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.181671] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.088357] [Yaw: 0.195835] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.198212] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101531] [Yaw: 0.162504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.836823] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108449] [Yaw: 0.134831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.502686] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115790] [Yaw: 0.107531] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.126914] [Yaw: 0.075942] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.845703] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147010] [Yaw: 0.019803] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.515472] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.011839] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.059662] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.025825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.449738] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.001849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.851135] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.030790] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.115662] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.062284] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.511810] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.092520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.702942] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.114163] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.896545] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.141496] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.134247] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.172789] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.316101] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.203270] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.431091] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.229944] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.401611] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.259189] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.408539] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.148366] [Yaw: 0.284314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.441254] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140079] [Yaw: 0.314196] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.393494] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.127148] [Yaw: 0.345704] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.297028] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.116834] [Yaw: 0.375800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.052643] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.109519] [Yaw: 0.405062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.894836] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101225] [Yaw: 0.433580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.738586] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.088717] [Yaw: 0.461782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.494934] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.077953] [Yaw: 0.456911] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.260223] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.069848] [Yaw: 0.429153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.934479] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.058064] [Yaw: 0.402402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.571014] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046909] [Yaw: 0.371951] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.132263] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039250] [Yaw: 0.341312] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.734955] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.030528] [Yaw: 0.306426] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.326202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.017456] [Yaw: 0.279125] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.767761] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007237] [Yaw: 0.252477] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.236145] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000138] [Yaw: 0.222978] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.673340] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.008219] [Yaw: 0.190653] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.043732] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.019428] [Yaw: 0.161145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.427155] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031283] [Yaw: 0.129769] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.729645] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038809] [Yaw: 0.103182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.031464] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.049017] [Yaw: 0.078437] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.284943] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.061504] [Yaw: 0.048102] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.497162] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.068749] [Yaw: 0.019122] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.729431] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077148] [Yaw: -0.014474] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.901520] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.088596] [Yaw: -0.047780] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.052002] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100968] [Yaw: -0.075453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.190186] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.109003] [Yaw: -0.102678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.301758] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.117209] [Yaw: -0.135503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.395447] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.126917] [Yaw: -0.163637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.459229] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139789] [Yaw: -0.194449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.519501] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.147181] [Yaw: -0.221936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.565948] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.247720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.603394] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.279330] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.638519] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.307261] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.666748] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.336270] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.697601] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151769] [Yaw: -0.360018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.730591] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.144271] [Yaw: -0.330027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.764282] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.136419] [Yaw: -0.300289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.803925] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.122330] [Yaw: -0.272111] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.857544] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114353] [Yaw: -0.241725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.913269] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.106358] [Yaw: -0.217114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.997223] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.099095] [Yaw: -0.188537] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.085663] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.086686] [Yaw: -0.161608] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.185577] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072251] [Yaw: -0.112533] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.316650] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.061573] [Yaw: -0.074916] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.461700] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.046988] [Yaw: -0.042996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.652588] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043137] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.857208] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028623] [Yaw: 0.022762] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.106842] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.012964] [Yaw: 0.056424] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.375854] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004253] [Yaw: 0.088869] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.676025] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.003480] [Yaw: 0.060588] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.958435] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010642] [Yaw: 0.031941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.259827] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.024004] [Yaw: 0.002973] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.638092] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034187] [Yaw: -0.030865] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.036285] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042044] [Yaw: -0.062295] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.484344] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050413] [Yaw: -0.088493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.940948] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.065004] [Yaw: -0.118244] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.413666] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.073951] [Yaw: -0.092430] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.979797] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.081771] [Yaw: -0.068413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.484100] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.095877] [Yaw: -0.039618] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.076202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104306] [Yaw: -0.010228] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.653625] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.111456] [Yaw: 0.018373] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.296906] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.119152] [Yaw: 0.049155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.031158] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.132061] [Yaw: 0.079808] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.734894] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.142022] [Yaw: 0.104497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.500366] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149419] [Yaw: 0.131008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.337463] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.161493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.162659] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.203121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.015106] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.246060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.846802] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.272740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.810211] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152442] [Yaw: 0.296115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.753815] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.146066] [Yaw: 0.321618] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.713806] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.139370] [Yaw: 0.348402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.618805] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.128479] [Yaw: 0.374415] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.773346] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.117190] [Yaw: 0.370720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.906311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.109956] [Yaw: 0.341785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.068542] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.103071] [Yaw: 0.314243] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.289551] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.095783] [Yaw: 0.290733] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.455780] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.082464] [Yaw: 0.270755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.871887] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074493] [Yaw: 0.239150] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.271271] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067222] [Yaw: 0.210066] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.758575] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.053860] [Yaw: 0.182229] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.183594] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046022] [Yaw: 0.156639] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.582092] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038826] [Yaw: 0.127851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.091431] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032164] [Yaw: 0.104336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.571014] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.023526] [Yaw: 0.082346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.237946] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010658] [Yaw: 0.054395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.029022] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.003666] [Yaw: 0.026430] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.783142] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.003416] [Yaw: -0.001901] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.633301] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.010624] [Yaw: -0.030730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.550262] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.023558] [Yaw: -0.058881] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.468506] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.032778] [Yaw: -0.082648] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.459961] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.049302] [Yaw: -0.127550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.499634] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.058824] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.531799] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.062867] [Yaw: -0.136767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.679504] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.073244] [Yaw: -0.098547] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.741425] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.088224] [Yaw: -0.054924] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.962402] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100991] [Yaw: -0.023485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.146973] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.108349] [Yaw: -0.013788] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.387695] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.115557] [Yaw: -0.042622] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.433777] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121817] [Yaw: -0.067039] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.680176] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.135740] [Yaw: -0.087923] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.031311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143404] [Yaw: -0.114793] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.418915] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.150446] [Yaw: -0.142962] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.880341] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.172986] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.443329] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.204130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.681458] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.225736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.082214] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.249904] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.654785] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.278891] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.239136] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.149424] [Yaw: -0.316031] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.949585] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.135224] [Yaw: -0.368767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.371582] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121456] [Yaw: -0.396418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.038116] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.097519] [Yaw: -0.418828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.905304] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063194] [Yaw: -0.319442] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.105713] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028634] [Yaw: -0.219236] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.565094] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.005316] [Yaw: -0.115990] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.251587] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039166] [Yaw: -0.019809] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.056213] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080174] [Yaw: 0.107189] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.911682] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.113857] [Yaw: 0.208368] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.539795] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.136875] [Yaw: 0.269828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.567993] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.144172] [Yaw: 0.291340] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.432617] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.151133] [Yaw: 0.318256] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.104858] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.344305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.919434] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.371088] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.731995] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.397899] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.564941] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.424228] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.416748] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.446520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.307129] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.476194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.147156] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.504798] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.946167] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.745361] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147383] [Yaw: 0.483649] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.545105] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140458] [Yaw: 0.455951] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.028625] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.131162] [Yaw: 0.433998] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.778137] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.116834] [Yaw: 0.400669] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.548889] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.104470] [Yaw: 0.351212] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.087036] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098106] [Yaw: 0.325759] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.729309] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084200] [Yaw: 0.297811] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.476257] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076174] [Yaw: 0.275580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.201660] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.069079] [Yaw: 0.248866] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.895325] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.057077] [Yaw: 0.220035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.637085] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046771] [Yaw: 0.191006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.364380] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039554] [Yaw: 0.162136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.018372] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032535] [Yaw: 0.134061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.692810] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.023053] [Yaw: 0.107128] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.377808] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010263] [Yaw: 0.084188] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.106079] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.003281] [Yaw: 0.056262] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.729004] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004181] [Yaw: 0.026759] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.330627] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.025757] [Yaw: -0.030777] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.007446] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034468] [Yaw: -0.007226] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.572449] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.041765] [Yaw: 0.021962] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.057556] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.054081] [Yaw: 0.049339] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.455017] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063008] [Yaw: 0.075563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.848206] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.069900] [Yaw: 0.099897] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.320068] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077046] [Yaw: 0.123870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.731201] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.085923] [Yaw: 0.152239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.062134] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.098952] [Yaw: 0.180121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.251160] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.104980] [Yaw: 0.204234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.345032] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.111785] [Yaw: 0.231453] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.590698] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.118938] [Yaw: 0.260066] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.933899] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.130597] [Yaw: 0.284130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.171997] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.141306] [Yaw: 0.281965] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.448364] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.148583] [Yaw: 0.242710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.642151] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.197064] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.759277] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.168843] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.954468] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.140997] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.037964] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.113147] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.177551] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.091438] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.244141] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.062841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.257874] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.146180] [Yaw: 0.031777] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.342346] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138491] [Yaw: 0.001022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.241211] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.125554] [Yaw: -0.027324] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.149841] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.111443] [Yaw: -0.070733] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.996765] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.101262] [Yaw: -0.108679] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.851440] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.089860] [Yaw: -0.137928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.732300] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.078741] [Yaw: -0.167389] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.181519] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072182] [Yaw: -0.193624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.819092] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.064914] [Yaw: -0.220944] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.435730] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.057103] [Yaw: -0.236634] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.058777] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.042273] [Yaw: -0.212229] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.620483] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.035261] [Yaw: -0.184182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.225769] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.027552] [Yaw: -0.153345] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.735474] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.012323] [Yaw: -0.122684] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.082886] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005644] [Yaw: -0.097086] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.369690] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.001356] [Yaw: -0.074364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.574951] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007424] [Yaw: -0.052658] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.882629] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.019602] [Yaw: -0.014395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.328125] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038179] [Yaw: 0.038991] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.586365] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.044813] [Yaw: 0.065525] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.768738] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.052492] [Yaw: 0.092464] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.974670] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.066260] [Yaw: 0.113116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.073374] [Yaw: 0.140554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.322083] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080758] [Yaw: 0.170089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.433472] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.093160] [Yaw: 0.198085] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.528564] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.107502] [Yaw: 0.245695] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.590393] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.117987] [Yaw: 0.283371] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.591797] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.128504] [Yaw: 0.307988] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.581116] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.139761] [Yaw: 0.335513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.513184] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147260] [Yaw: 0.365512] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.421692] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.393457] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.324646] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.417075] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.182922] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.390842] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.063416] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.361589] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.875488] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.332369] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.657410] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.303136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.425903] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.278688] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.156738] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.251823] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.890198] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149136] [Yaw: 0.223996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.565613] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.142083] [Yaw: 0.195783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.212524] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.131087] [Yaw: 0.160024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.857056] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.112583] [Yaw: 0.118295] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.473083] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.105155] [Yaw: 0.148006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.096558] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098041] [Yaw: 0.176465] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.684937] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084218] [Yaw: 0.204112] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.245239] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076623] [Yaw: 0.230763] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.714111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070678] [Yaw: 0.254544] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.242920] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.060692] [Yaw: 0.279550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.770935] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.048695] [Yaw: 0.303259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.286743] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041781] [Yaw: 0.330914] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.789734] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034584] [Yaw: 0.359703] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.280396] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.027670] [Yaw: 0.387361] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.757996] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.013820] [Yaw: 0.415497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.218994] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000562] [Yaw: 0.462751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.686768] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.009643] [Yaw: 0.451623] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.142212] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.021832] [Yaw: 0.428037] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.577087] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031619] [Yaw: 0.402936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.018799] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038654] [Yaw: 0.374797] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.443604] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.047825] [Yaw: 0.347488] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.863037] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060359] [Yaw: 0.319347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.285889] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067359] [Yaw: 0.292040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.701111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074530] [Yaw: 0.270508] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.112854] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.081499] [Yaw: 0.242633] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.516357] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.094448] [Yaw: 0.215027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.924316] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.103826] [Yaw: 0.184696] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.300293] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.110331] [Yaw: 0.158675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.677429] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.123981] [Yaw: 0.121168] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.062805] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139567] [Yaw: 0.080947] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.429504] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.146509] [Yaw: 0.053180] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.830383] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.023841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.218079] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.004721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.618530] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.034571] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.004639] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.146337] [Yaw: -0.061710] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.397827] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.139164] [Yaw: -0.084469] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.804260] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.126156] [Yaw: -0.112394] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.213562] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.116668] [Yaw: -0.141170] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.571838] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.110420] [Yaw: -0.139718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.986755] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.103474] [Yaw: -0.111936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.423462] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.093446] [Yaw: -0.083307] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.849365] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.081374] [Yaw: -0.062752] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.316284] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074407] [Yaw: -0.034883] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.785889] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.066625] [Yaw: -0.003755] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.282898] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059123] [Yaw: 0.026255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.810852] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.043585] [Yaw: 0.057927] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.368042] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.036087] [Yaw: 0.087024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.933411] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.016342] [Yaw: 0.134418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.489868] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.006577] [Yaw: 0.165851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.100342] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.000287] [Yaw: 0.193304] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.717651] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.007423] [Yaw: 0.221848] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.356445] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.017174] [Yaw: 0.228397] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.024780] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029129] [Yaw: 0.201130] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.705872] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036215] [Yaw: 0.172786] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.449646] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.043436] [Yaw: 0.143902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.172852] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.050568] [Yaw: 0.115376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.906860] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.063817] [Yaw: 0.094471] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.704346] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.077193] [Yaw: 0.048089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.522522] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.090979] [Yaw: 0.010200] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.344543] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.101148] [Yaw: -0.016356] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.207275] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.107416] [Yaw: -0.029161] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.984680] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.113775] [Yaw: -0.003725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.919250] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.120840] [Yaw: 0.024537] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.874329] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.133924] [Yaw: 0.052161] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.822632] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.142660] [Yaw: 0.080444] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.858459] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149884] [Yaw: 0.123700] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.906067] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.161022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.950378] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.190252] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.157898] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.219210] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.287476] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.247101] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.431396] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.272290] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.620972] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.293806] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.804565] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.343816] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.052185] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147575] [Yaw: 0.378328] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.395813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.140454] [Yaw: 0.406810] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.688049] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.129259] [Yaw: 0.431601] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.040039] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.118641] [Yaw: 0.454849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.418152] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.112119] [Yaw: 0.468086] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.791809] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.105235] [Yaw: 0.441195] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.252808] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.098320] [Yaw: 0.420451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.720825] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.084264] [Yaw: 0.392058] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.187866] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076899] [Yaw: 0.366418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.730957] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.070575] [Yaw: 0.341124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.252808] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.062101] [Yaw: 0.316359] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.826904] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049919] [Yaw: 0.290935] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.460632] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.042780] [Yaw: 0.269159] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.114258] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036206] [Yaw: 0.242861] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.802124] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029748] [Yaw: 0.217031] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.631470] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.013260] [Yaw: 0.170002] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.428162] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000069] [Yaw: 0.129138] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.284363] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.007384] [Yaw: 0.103338] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.092041] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.016710] [Yaw: 0.080305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.948425] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.029104] [Yaw: 0.052213] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.893555] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.036095] [Yaw: 0.024247] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.811951] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.042708] [Yaw: -0.002206] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.789734] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.056362] [Yaw: -0.030370] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.760559] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.064680] [Yaw: -0.058722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.746338] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.071868] [Yaw: -0.082270] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.782837] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.078937] [Yaw: -0.107905] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.882751] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.089428] [Yaw: -0.135718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.945862] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.100274] [Yaw: -0.161880] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.033813] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.106813] [Yaw: -0.188035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.152832] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.114015] [Yaw: -0.216554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.263733] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.121134] [Yaw: -0.237913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.426514] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.134537] [Yaw: -0.265152] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.583496] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.142963] [Yaw: -0.293421] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.825317] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.150107] [Yaw: -0.342030] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.055115] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.382012] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.166260] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.383040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.451782] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.355423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.664307] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.151823] [Yaw: -0.328860] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.965698] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.145485] [Yaw: -0.303508] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.274658] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138443] [Yaw: -0.275343] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.693604] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.120243] [Yaw: -0.230894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.175171] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.108795] [Yaw: -0.195963] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.732361] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.101816] [Yaw: -0.168050] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.140625] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.091811] [Yaw: -0.140485] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.632202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.079889] [Yaw: -0.111712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.053284] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072720] [Yaw: -0.084826] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.583618] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.065429] [Yaw: -0.061717] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.078308] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.059070] [Yaw: -0.036280] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.609314] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.045613] [Yaw: -0.008873] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.110718] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.037511] [Yaw: 0.018583] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.646423] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.030592] [Yaw: 0.046261] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.114685] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.015875] [Yaw: 0.027955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.807495] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000534] [Yaw: -0.017472] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.378662] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006496] [Yaw: -0.045590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.989258] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.014643] [Yaw: -0.070985] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.995361] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.029594] [Yaw: -0.098769] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.814697] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.036620] [Yaw: -0.126874] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.431335] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.043159] [Yaw: -0.152998] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.083984] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.064437] [Yaw: -0.209741] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.750244] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.072931] [Yaw: -0.234479] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.378601] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.079539] [Yaw: -0.224128] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.859680] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.089070] [Yaw: -0.202252] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.430908] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100124] [Yaw: -0.175976] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.016357] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.107140] [Yaw: -0.147911] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.608154] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114138] [Yaw: -0.119919] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.182617] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.120594] [Yaw: -0.094096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.759094] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.132465] [Yaw: -0.073852] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.303345] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.141711] [Yaw: -0.048842] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.771179] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.148695] [Yaw: -0.006517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.318848] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.036451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.842102] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.062060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.191162] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.087277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.720581] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.107938] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.261719] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.134325] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.900269] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.161773] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.419312] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.188142] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.937439] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149547] [Yaw: 0.221420] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.546570] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.135765] [Yaw: 0.272822] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.029297] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.122039] [Yaw: 0.293413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115614] [Yaw: 0.317938] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.723938] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.108954] [Yaw: 0.344575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.214844] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.102116] [Yaw: 0.341799] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.636536] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.092432] [Yaw: 0.314276] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.038696] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080397] [Yaw: 0.288249] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.450195] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074005] [Yaw: 0.268567] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.812195] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067486] [Yaw: 0.242494] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.255615] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.055217] [Yaw: 0.216316] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.649719] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.046174] [Yaw: 0.188617] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.032654] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.039063] [Yaw: 0.160175] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.487488] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.032014] [Yaw: 0.131979] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.831848] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.022811] [Yaw: 0.106766] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.214172] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010345] [Yaw: 0.084517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.567688] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.002704] [Yaw: 0.053954] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.939331] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.010638] [Yaw: 0.000584] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.229370] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.024285] [Yaw: -0.028962] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.480652] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033073] [Yaw: -0.057782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.714294] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.039593] [Yaw: -0.079564] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.891724] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.049100] [Yaw: -0.102122] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.064209] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.060714] [Yaw: -0.129131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.207947] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.067869] [Yaw: -0.157752] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.369812] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.075030] [Yaw: -0.186394] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.582214] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.081887] [Yaw: -0.213822] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.693848] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.095843] [Yaw: -0.235921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.600647] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.102913] [Yaw: -0.224593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.461243] [T/O: false ][Cruise: true ] +[Elevator: 0.099185] [Roll: -0.109231] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.446411] [T/O: false ][Cruise: true ] +[Elevator: 0.087880] [Roll: -0.116041] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.467651] [T/O: false ][Cruise: true ] +[Elevator: 0.080914] [Roll: -0.124448] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.409363] [T/O: false ][Cruise: true ] +[Elevator: 0.074099] [Roll: -0.137666] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.399109] [T/O: false ][Cruise: true ] +[Elevator: 0.067035] [Roll: -0.144729] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.327026] [T/O: false ][Cruise: true ] +[Elevator: 0.053197] [Roll: -0.151833] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.267883] [T/O: false ][Cruise: true ] +[Elevator: 0.045045] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.054504] [T/O: false ][Cruise: true ] +[Elevator: 0.038351] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.988403] [T/O: false ][Cruise: true ] +[Elevator: 0.030922] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.838623] [T/O: false ][Cruise: true ] +[Elevator: 0.021003] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.603699] [T/O: false ][Cruise: true ] +[Elevator: 0.009739] [Roll: -0.150915] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.424072] [T/O: false ][Cruise: true ] +[Elevator: 0.003048] [Roll: -0.144225] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.192261] [T/O: false ][Cruise: true ] +[Elevator: -0.003591] [Roll: -0.137586] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.909424] [T/O: false ][Cruise: true ] +[Elevator: -0.016011] [Roll: -0.125165] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.629150] [T/O: false ][Cruise: true ] +[Elevator: -0.024351] [Roll: -0.116825] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.255127] [T/O: false ][Cruise: true ] +[Elevator: -0.031345] [Roll: -0.109832] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.908447] [T/O: false ][Cruise: true ] +[Elevator: -0.038812] [Roll: -0.102364] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.586792] [T/O: false ][Cruise: true ] +[Elevator: -0.048661] [Roll: -0.092515] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.125000] [T/O: false ][Cruise: true ] +[Elevator: -0.060120] [Roll: -0.081056] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.651733] [T/O: false ][Cruise: true ] +[Elevator: -0.066520] [Roll: -0.074657] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.085693] [T/O: false ][Cruise: true ] +[Elevator: -0.072817] [Roll: -0.068360] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.575806] [T/O: false ][Cruise: true ] +[Elevator: -0.085270] [Roll: -0.061287] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.997192] [T/O: false ][Cruise: true ] +[Elevator: -0.094478] [Roll: -0.050259] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.212280] [T/O: false ][Cruise: true ] +[Elevator: -0.100961] [Roll: -0.040216] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.366455] [T/O: false ][Cruise: true ] +[Elevator: -0.107494] [Roll: -0.033682] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.607910] [T/O: false ][Cruise: true ] +[Elevator: -0.115552] [Roll: -0.025625] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.721924] [T/O: false ][Cruise: true ] +[Elevator: -0.129336] [Roll: -0.011840] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.875488] [T/O: false ][Cruise: true ] +[Elevator: -0.142712] [Roll: 0.001535] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.934204] [T/O: false ][Cruise: true ] +[Elevator: -0.151184] [Roll: 0.010007] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.888916] [T/O: false ][Cruise: true ] +[Elevator: -0.163382] [Roll: 0.022206] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.867432] [T/O: false ][Cruise: true ] +[Elevator: -0.173086] [Roll: 0.031909] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.722900] [T/O: false ][Cruise: true ] +[Elevator: -0.180210] [Roll: 0.039034] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.550415] [T/O: false ][Cruise: true ] +[Elevator: -0.190002] [Roll: 0.045981] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.323486] [T/O: false ][Cruise: true ] +[Elevator: -0.201984] [Roll: 0.054949] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.904419] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.067827] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.503418] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.074826] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.994995] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.081379] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.350830] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.093695] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.716064] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.102966] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.932373] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.110035] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.061035] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.116924] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.197021] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.126495] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.098389] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.138939] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.995483] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.144788] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.885742] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.151487] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.502686] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.127319] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.657227] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.029663] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.443237] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.633301] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152627] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.692749] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.145127] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.779175] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.138675] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.638916] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.126807] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.437500] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.112937] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.227417] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.102529] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.896851] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.093629] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.324707] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.080337] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.701294] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.073063] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.880005] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.065771] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.112549] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.051469] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.060913] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.043764] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.908081] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.029872] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.816528] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.015295] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.386719] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.002368] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.832520] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.005245] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.988464] [T/O: false ][Cruise: true ] +[Elevator: -0.206275] [Roll: -0.014902] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.289551] [T/O: false ][Cruise: true ] +[Elevator: -0.196780] [Roll: -0.029061] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.172729] [T/O: false ][Cruise: true ] +[Elevator: -0.182333] [Roll: -0.037275] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.230957] [T/O: false ][Cruise: true ] +[Elevator: -0.171881] [Roll: -0.047726] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.903442] [T/O: false ][Cruise: true ] +[Elevator: -0.151464] [Roll: -0.068144] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.592285] [T/O: false ][Cruise: true ] +[Elevator: -0.143974] [Roll: -0.075634] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.233521] [T/O: false ][Cruise: true ] +[Elevator: -0.136497] [Roll: -0.083869] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.693726] [T/O: false ][Cruise: true ] +[Elevator: -0.128288] [Roll: -0.098601] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.057739] [T/O: false ][Cruise: true ] +[Elevator: -0.113568] [Roll: -0.106039] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.591614] [T/O: false ][Cruise: true ] +[Elevator: -0.106309] [Roll: -0.113299] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.921631] [T/O: false ][Cruise: true ] +[Elevator: -0.098465] [Roll: -0.121143] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.273743] [T/O: false ][Cruise: true ] +[Elevator: -0.091293] [Roll: -0.135062] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.580383] [T/O: false ][Cruise: true ] +[Elevator: -0.077323] [Roll: -0.143692] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.121643] [T/O: false ][Cruise: true ] +[Elevator: -0.066956] [Roll: -0.152652] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.695740] [T/O: false ][Cruise: true ] +[Elevator: -0.059419] [Roll: -0.145693] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.839111] [T/O: false ][Cruise: true ] +[Elevator: -0.039572] [Roll: -0.125847] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.701111] [T/O: false ][Cruise: true ] +[Elevator: -0.028433] [Roll: -0.114708] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.830872] [T/O: false ][Cruise: true ] +[Elevator: -0.018953] [Roll: -0.105555] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.579895] [T/O: false ][Cruise: true ] +[Elevator: -0.003102] [Roll: -0.096400] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.201599] [T/O: false ][Cruise: true ] +[Elevator: 0.004953] [Roll: -0.081322] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.014832] [T/O: false ][Cruise: true ] +[Elevator: 0.012822] [Roll: -0.073981] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.721924] [T/O: false ][Cruise: true ] +[Elevator: 0.031940] [Roll: -0.062177] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.587952] [T/O: false ][Cruise: true ] +[Elevator: 0.039241] [Roll: -0.050929] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.408630] [T/O: false ][Cruise: true ] +[Elevator: 0.045498] [Roll: -0.040776] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.576111] [T/O: false ][Cruise: true ] +[Elevator: 0.054419] [Roll: -0.033575] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.975586] [T/O: false ][Cruise: true ] +[Elevator: 0.067663] [Roll: -0.025459] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.205505] [T/O: false ][Cruise: true ] +[Elevator: 0.075206] [Roll: -0.011068] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.643921] [T/O: false ][Cruise: true ] +[Elevator: 0.082358] [Roll: -0.003918] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.226501] [T/O: false ][Cruise: true ] +[Elevator: 0.103615] [Roll: 0.010253] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.939758] [T/O: false ][Cruise: true ] +[Elevator: 0.112698] [Roll: 0.025396] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.647034] [T/O: false ][Cruise: true ] +[Elevator: 0.119453] [Roll: 0.033178] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.529541] [T/O: false ][Cruise: true ] +[Elevator: 0.130628] [Roll: 0.039824] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.803406] [T/O: false ][Cruise: true ] +[Elevator: 0.140631] [Roll: 0.046514] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.014221] [T/O: false ][Cruise: true ] +[Elevator: 0.147681] [Roll: 0.056147] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.366760] [T/O: false ][Cruise: true ] +[Elevator: 0.154438] [Roll: 0.068163] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.022400] [T/O: false ][Cruise: true ] +[Elevator: 0.160787] [Roll: 0.074511] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.632690] [T/O: false ][Cruise: true ] +[Elevator: 0.173640] [Roll: 0.080938] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.255371] [T/O: false ][Cruise: true ] +[Elevator: 0.187771] [Roll: 0.099304] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.284363] [T/O: false ][Cruise: true ] +[Elevator: 0.196699] [Roll: 0.110424] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.257751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.116932] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.653381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.124730] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.133057] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.137668] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.723572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.144120] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.647827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150508] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.633057] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.702759] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.277405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.963196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152399] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.643433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.146549] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.845642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.139885] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.167664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.128477] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.510010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.117966] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.514832] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.111144] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.446411] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.104876] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.469971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.098067] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.007507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.085674] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.651306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.073668] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.237366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.062137] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.349426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050724] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.465027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.045111] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.730957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.039032] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.392883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.033390] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.070984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.027658] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.852356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.016017] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.814026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.006319] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.052124] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.005583] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.734375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.019629] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.377441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.029780] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.269409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.037187] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.655334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.045969] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.888123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060370] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.408569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.067040] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.867432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.073614] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.673706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.094408] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.062134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.104853] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.353027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110575] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.439636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.116223] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.885376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.123799] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.635254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.141913] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.418823] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150045] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.217834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.210815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.286011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.734436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.761841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.440552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.501343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.020874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.578003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.454712] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.149651] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.100464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.143646] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.681519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.138152] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.422729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.126395] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.413574] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.117852] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.138794] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.109860] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.084961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.097702] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.038696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.085851] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.003540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.077985] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.970825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.072205] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.003906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.066243] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.186401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.059404] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.334839] [T/O: false ][Cruise: true ] +[Elevator: 0.194579] [Roll: -0.047981] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.175415] [T/O: false ][Cruise: true ] +[Elevator: 0.184035] [Roll: -0.035016] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.446289] [T/O: false ][Cruise: true ] +[Elevator: 0.171940] [Roll: -0.022921] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.278320] [T/O: false ][Cruise: true ] +[Elevator: 0.160445] [Roll: -0.011426] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.188843] [T/O: false ][Cruise: true ] +[Elevator: 0.154516] [Roll: -0.005497] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.117432] [T/O: false ][Cruise: true ] +[Elevator: 0.148536] [Roll: 0.000483] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.768677] [T/O: false ][Cruise: true ] +[Elevator: 0.142660] [Roll: 0.006360] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.666382] [T/O: false ][Cruise: true ] +[Elevator: 0.136242] [Roll: 0.012778] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.124043] [Roll: 0.024976] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.762817] [T/O: false ][Cruise: true ] +[Elevator: 0.110791] [Roll: 0.038229] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.807861] [T/O: false ][Cruise: true ] +[Elevator: 0.088782] [Roll: 0.053810] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.692139] [T/O: false ][Cruise: true ] +[Elevator: 0.082158] [Roll: 0.066862] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.337158] [T/O: false ][Cruise: true ] +[Elevator: 0.075209] [Roll: 0.073811] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.915771] [T/O: false ][Cruise: true ] +[Elevator: 0.069012] [Roll: 0.080008] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.469360] [T/O: false ][Cruise: true ] +[Elevator: 0.058587] [Roll: 0.090432] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.953247] [T/O: false ][Cruise: true ] +[Elevator: 0.045685] [Roll: 0.103335] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.706543] [T/O: false ][Cruise: true ] +[Elevator: 0.033846] [Roll: 0.115173] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.036987] [T/O: false ][Cruise: true ] +[Elevator: 0.027817] [Roll: 0.121202] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.022583] [T/O: false ][Cruise: true ] +[Elevator: 0.016089] [Roll: 0.132931] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.002075] [T/O: false ][Cruise: true ] +[Elevator: 0.008024] [Roll: 0.140996] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.286743] [T/O: false ][Cruise: true ] +[Elevator: 0.001507] [Roll: 0.147513] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.124634] [T/O: false ][Cruise: true ] +[Elevator: -0.006339] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.935669] [T/O: false ][Cruise: true ] +[Elevator: -0.018769] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.637207] [T/O: false ][Cruise: true ] +[Elevator: -0.031075] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.348511] [T/O: false ][Cruise: true ] +[Elevator: -0.039147] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.899170] [T/O: false ][Cruise: true ] +[Elevator: -0.046859] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.415771] [T/O: false ][Cruise: true ] +[Elevator: -0.057699] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.912231] [T/O: false ][Cruise: true ] +[Elevator: -0.064509] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.282593] [T/O: false ][Cruise: true ] +[Elevator: -0.070686] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.471802] [T/O: false ][Cruise: true ] +[Elevator: -0.078876] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.688965] [T/O: false ][Cruise: true ] +[Elevator: -0.090444] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.692139] [T/O: false ][Cruise: true ] +[Elevator: -0.096541] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.528442] [T/O: false ][Cruise: true ] +[Elevator: -0.102630] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.460327] [T/O: false ][Cruise: true ] +[Elevator: -0.114586] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.078003] [T/O: false ][Cruise: true ] +[Elevator: -0.130504] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.136500] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.460449] [T/O: false ][Cruise: true ] +[Elevator: -0.142942] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.903809] [T/O: false ][Cruise: true ] +[Elevator: -0.149280] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.956909] [T/O: false ][Cruise: true ] +[Elevator: -0.156933] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.976807] [T/O: false ][Cruise: true ] +[Elevator: -0.168726] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.951050] [T/O: false ][Cruise: true ] +[Elevator: -0.174776] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.801514] [T/O: false ][Cruise: true ] +[Elevator: -0.190077] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.694214] [T/O: false ][Cruise: true ] +[Elevator: -0.203005] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.329834] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.837891] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.378296] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.713501] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.012939] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.186279] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.307129] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.196899] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.088745] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.869141] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.413818] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.838867] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.108887] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.173462] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.421143] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.423950] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.336426] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.640747] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.141235] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.127197] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.060181] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.062256] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.914063] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.620361] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.256958] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.375854] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.489868] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.514282] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.152222] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.797974] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.240845] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.391113] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.550537] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.414551] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.035889] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.767334] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.855347] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.056274] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.212524] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.831299] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.392090] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.861450] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.005615] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.919800] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.738403] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.946655] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.405762] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.550049] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.320679] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.100098] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.808960] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.069458] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.365723] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.130371] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.007568] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.993652] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.593506] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.073120] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.492065] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.659790] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.218262] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.176025] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.273315] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.520874] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.496948] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.065918] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.978271] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.480591] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.147182] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.583862] [T/O: false ][Cruise: true ] +[Elevator: -0.205920] [Roll: 0.133408] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.348267] [T/O: false ][Cruise: true ] +[Elevator: -0.199745] [Roll: 0.121441] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.178711] [T/O: false ][Cruise: true ] +[Elevator: -0.186210] [Roll: 0.114674] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.660278] [T/O: false ][Cruise: true ] +[Elevator: -0.178815] [Roll: 0.108227] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.497681] [T/O: false ][Cruise: true ] +[Elevator: -0.172582] [Roll: 0.101994] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.257446] [T/O: false ][Cruise: true ] +[Elevator: -0.164368] [Roll: 0.093780] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.864624] [T/O: false ][Cruise: true ] +[Elevator: -0.152599] [Roll: 0.082011] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.531982] [T/O: false ][Cruise: true ] +[Elevator: -0.146652] [Roll: 0.076064] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.135881] [Roll: 0.060684] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.580322] [T/O: false ][Cruise: true ] +[Elevator: -0.123917] [Roll: 0.048233] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.856567] [T/O: false ][Cruise: true ] +[Elevator: -0.112664] [Roll: 0.042076] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.047729] [T/O: false ][Cruise: true ] +[Elevator: -0.105972] [Roll: 0.035384] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.812622] [T/O: false ][Cruise: true ] +[Elevator: -0.099809] [Roll: 0.029221] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.940674] [T/O: false ][Cruise: true ] +[Elevator: -0.093955] [Roll: 0.019283] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.672974] [T/O: false ][Cruise: true ] +[Elevator: -0.085324] [Roll: 0.009329] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.003784] [T/O: false ][Cruise: true ] +[Elevator: -0.073809] [Roll: 0.003221] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.058716] [T/O: false ][Cruise: true ] +[Elevator: -0.067447] [Roll: -0.003141] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.838135] [T/O: false ][Cruise: true ] +[Elevator: -0.049685] [Roll: -0.020904] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.868652] [T/O: false ][Cruise: true ] +[Elevator: -0.039227] [Roll: -0.031361] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.239502] [T/O: false ][Cruise: true ] +[Elevator: -0.033280] [Roll: -0.037308] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.295410] [T/O: false ][Cruise: true ] +[Elevator: -0.027217] [Roll: -0.043605] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.298584] [T/O: false ][Cruise: true ] +[Elevator: -0.020451] [Roll: -0.057138] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.823608] [T/O: false ][Cruise: true ] +[Elevator: -0.007227] [Roll: -0.065014] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.407715] [T/O: false ][Cruise: true ] +[Elevator: 0.000927] [Roll: -0.071515] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.735474] [T/O: false ][Cruise: true ] +[Elevator: 0.007297] [Roll: -0.077886] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.614380] [T/O: false ][Cruise: true ] +[Elevator: 0.016689] [Roll: -0.087277] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.703613] [T/O: false ][Cruise: true ] +[Elevator: 0.035508] [Roll: -0.106096] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.004333] [T/O: false ][Cruise: true ] +[Elevator: 0.042234] [Roll: -0.112822] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.870239] [T/O: false ][Cruise: true ] +[Elevator: 0.049320] [Roll: -0.119908] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.955383] [T/O: false ][Cruise: true ] +[Elevator: 0.061115] [Roll: -0.131703] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.489197] [T/O: false ][Cruise: true ] +[Elevator: 0.070530] [Roll: -0.141118] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.721985] [T/O: false ][Cruise: true ] +[Elevator: 0.076996] [Roll: -0.142612] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.291748] [T/O: false ][Cruise: true ] +[Elevator: 0.083537] [Roll: -0.134886] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.854675] [T/O: false ][Cruise: true ] +[Elevator: 0.090664] [Roll: -0.121335] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.983459] [T/O: false ][Cruise: true ] +[Elevator: 0.103808] [Roll: -0.114763] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.756714] [T/O: false ][Cruise: true ] +[Elevator: 0.111853] [Roll: -0.107755] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.691711] [T/O: false ][Cruise: true ] +[Elevator: 0.128660] [Roll: -0.090948] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.424500] [T/O: false ][Cruise: true ] +[Elevator: 0.140981] [Roll: -0.078627] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.505127] [T/O: false ][Cruise: true ] +[Elevator: 0.147852] [Roll: -0.071756] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.473572] [T/O: false ][Cruise: true ] +[Elevator: 0.154638] [Roll: -0.064970] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.288574] [T/O: false ][Cruise: true ] +[Elevator: 0.161620] [Roll: -0.057988] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.997681] [T/O: false ][Cruise: true ] +[Elevator: 0.174720] [Roll: -0.044888] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.768250] [T/O: false ][Cruise: true ] +[Elevator: 0.181841] [Roll: -0.037767] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.296387] [T/O: false ][Cruise: true ] +[Elevator: 0.197275] [Roll: -0.015853] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.100891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.006551] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.854980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000105] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.479980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.006741] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.748352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.015336] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.586487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.027909] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.587036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.034283] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.209961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.046384] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.905579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.058423] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.854248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.068805] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.420471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.075355] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.972900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.081930] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.160095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.093375] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.310608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.105443] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.378662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.115699] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.932312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.121342] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.412415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.133656] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.497070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.141676] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.194763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.147632] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.907471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.211060] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.149110] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.270996] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.106871] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.200562] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060499] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.515442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.006771] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.006958] [T/O: false ][Cruise: true ] +[Elevator: 0.179296] [Roll: -0.040312] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.192871] [T/O: false ][Cruise: true ] +[Elevator: 0.138085] [Roll: -0.081523] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.900818] [T/O: false ][Cruise: true ] +[Elevator: 0.080768] [Roll: -0.138840] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.513123] [T/O: false ][Cruise: true ] +[Elevator: 0.039302] [Roll: -0.109891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.221924] [T/O: false ][Cruise: true ] +[Elevator: -0.011987] [Roll: -0.062634] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.621582] [T/O: false ][Cruise: true ] +[Elevator: -0.052762] [Roll: -0.017826] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.618042] [T/O: false ][Cruise: true ] +[Elevator: -0.100267] [Roll: 0.029679] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.146108] [Roll: 0.075519] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.677002] [T/O: false ][Cruise: true ] +[Elevator: -0.184829] [Roll: 0.113983] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.697021] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.871094] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.267212] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.858521] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.412842] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.419067] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.994873] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.840942] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.684448] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.314453] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.299561] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.498779] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.302124] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.024658] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.023682] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.717407] [T/O: false ][Cruise: true ] +[Elevator: -0.165682] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.752075] [T/O: false ][Cruise: true ] +[Elevator: -0.127697] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.901245] [T/O: false ][Cruise: true ] +[Elevator: -0.076039] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.377197] [T/O: false ][Cruise: true ] +[Elevator: -0.037625] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.679443] [T/O: false ][Cruise: true ] +[Elevator: 0.008923] [Roll: 0.140097] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.516602] [T/O: false ][Cruise: true ] +[Elevator: 0.060601] [Roll: 0.088419] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.942749] [T/O: false ][Cruise: true ] +[Elevator: 0.098422] [Roll: 0.046867] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.114380] [T/O: false ][Cruise: true ] +[Elevator: 0.148254] [Roll: 0.000766] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.582397] [T/O: false ][Cruise: true ] +[Elevator: 0.193844] [Roll: -0.046512] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.546753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.083099] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.912720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.136303] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.222534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.098450] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.286804] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.117411] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.054504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.071978] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.443909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.033720] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.079102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.009506] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.914612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.046303] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.848816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.099104] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.430542] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.139003] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.303162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.372925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.117684] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.423462] [T/O: false ][Cruise: true ] +[Elevator: 0.153991] [Roll: 0.067716] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.821167] [T/O: false ][Cruise: true ] +[Elevator: 0.112314] [Roll: 0.024628] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.743835] [T/O: false ][Cruise: true ] +[Elevator: 0.054343] [Roll: -0.033613] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.601135] [T/O: false ][Cruise: true ] +[Elevator: 0.010935] [Roll: -0.075340] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.008301] [T/O: false ][Cruise: true ] +[Elevator: -0.032208] [Roll: -0.118482] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.333069] [T/O: false ][Cruise: true ] +[Elevator: -0.089068] [Roll: -0.137819] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.672546] [T/O: false ][Cruise: true ] +[Elevator: -0.132363] [Roll: -0.092136] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.242493] [T/O: false ][Cruise: true ] +[Elevator: -0.181803] [Roll: -0.037805] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.752563] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.006742] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.439209] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.069057] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.766479] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.119345] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.425903] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.466064] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.147729] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.061035] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.104677] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.385010] [T/O: false ][Cruise: true ] +[Elevator: -0.202927] [Roll: 0.056834] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.570435] [T/O: false ][Cruise: true ] +[Elevator: -0.151000] [Roll: 0.009824] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.344849] [T/O: false ][Cruise: true ] +[Elevator: -0.101213] [Roll: -0.039964] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.618408] [T/O: false ][Cruise: true ] +[Elevator: -0.059357] [Roll: -0.081819] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.680054] [T/O: false ][Cruise: true ] +[Elevator: -0.014391] [Roll: -0.126785] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.978882] [T/O: false ][Cruise: true ] +[Elevator: 0.032322] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.365479] [T/O: false ][Cruise: true ] +[Elevator: 0.075972] [Roll: -0.134330] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.817810] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.083821] [Yaw: -0.217888] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.858337] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.040396] [Yaw: -0.081971] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.693176] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008882] [Yaw: 0.078666] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.857300] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.051475] [Yaw: 0.208831] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.935425] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.100296] [Yaw: 0.334518] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.296997] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149952] [Yaw: 0.219800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.215881] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.083686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.863892] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.125864] [Yaw: -0.083754] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.443726] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.081071] [Yaw: -0.219531] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.066284] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.030013] [Yaw: -0.100443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.996765] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028354] [Yaw: 0.055212] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.154053] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.069695] [Yaw: -0.075751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.921387] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.112696] [Yaw: -0.211567] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.264954] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.368863] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.690979] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.126652] [Yaw: -0.249383] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.493713] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.085876] [Yaw: -0.128615] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.289978] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.042652] [Yaw: -0.001982] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.558655] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.000286] [Yaw: 0.128269] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.777405] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.049699] [Yaw: 0.290273] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.646973] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.099170] [Yaw: 0.423001] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.345459] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.141222] [Yaw: 0.403738] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.740356] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.234001] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.049866] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.139372] [Yaw: 0.067291] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.353455] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.097256] [Yaw: -0.002354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.235840] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.038547] [Yaw: 0.163460] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.720398] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.005552] [Yaw: 0.169949] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.744263] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.065352] [Yaw: 0.001338] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.314636] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.109994] [Yaw: -0.138016] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.225342] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.028749] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.198547] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.113624] [Yaw: 0.145503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.159424] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070300] [Yaw: 0.283218] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.076477] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.027024] [Yaw: 0.420248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.720459] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033059] [Yaw: 0.365803] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.164673] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.076500] [Yaw: 0.231254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.250916] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.132820] [Yaw: 0.164645] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.115479] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.292126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.391846] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.410625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.924133] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115387] [Yaw: 0.275572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.765564] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.063003] [Yaw: 0.108230] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.602173] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.006005] [Yaw: -0.058335] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.518799] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.038897] [Yaw: -0.198725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.636963] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.097360] [Yaw: -0.122927] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.101135] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.147287] [Yaw: 0.036208] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.347900] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.171829] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.339417] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.118629] [Yaw: 0.258832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.369263] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.072794] [Yaw: 0.108577] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.375977] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028494] [Yaw: -0.031123] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.200623] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.030615] [Yaw: 0.126383] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.781311] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.074293] [Yaw: 0.269722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.399902] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.127056] [Yaw: 0.427838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.523193] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.481408] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.397766] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.349029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.889160] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.115918] [Yaw: 0.216612] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.918335] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.072430] [Yaw: 0.081878] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.006653] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.014144] [Yaw: -0.086627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.865204] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.031453] [Yaw: -0.227692] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.554565] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.077458] [Yaw: -0.376499] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.073059] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.129085] [Yaw: -0.381046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.154358] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.208138] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.690552] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.124459] [Yaw: -0.071003] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.495972] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.074838] [Yaw: -0.092970] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.661285] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.028525] [Yaw: -0.069887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.802185] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010489] [Yaw: 0.053722] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.200684] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.052881] [Yaw: 0.180272] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.354340] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.102510] [Yaw: 0.312002] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.293152] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.147447] [Yaw: 0.316093] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.360535] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.145734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.429199] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.103384] [Yaw: -0.013914] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.659821] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041415] [Yaw: -0.059777] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.886505] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.004919] [Yaw: 0.086207] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.565002] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.063501] [Yaw: -0.080700] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.924652] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.117577] [Yaw: -0.254621] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.711212] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.326959] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.535095] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.136268] [Yaw: -0.182340] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.154785] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.088066] [Yaw: -0.046720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.104431] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033485] [Yaw: 0.120960] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.071411] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.021174] [Yaw: 0.284702] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.037598] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.075553] [Yaw: 0.447310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.966156] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.127388] [Yaw: 0.345223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.899353] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.190240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.638885] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.048564] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.903229] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.138404] [Yaw: 0.045302] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.244202] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080826] [Yaw: 0.213953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.726440] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.033696] [Yaw: 0.232823] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.863129] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.033645] [Yaw: 0.034046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.926361] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.082495] [Yaw: -0.121854] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.846069] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.138770] [Yaw: -0.146881] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.389130] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.150458] [Yaw: 0.037384] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.435577] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.102771] [Yaw: 0.188914] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.123810] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.058467] [Yaw: 0.326202] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.963593] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002010] [Yaw: 0.482157] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.463165] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.041831] [Yaw: 0.393460] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.949951] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.095144] [Yaw: 0.245006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.507645] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.149545] [Yaw: 0.283929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.049133] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.412996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.110779] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.114279] [Yaw: 0.272248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.940674] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.068506] [Yaw: 0.121081] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.327286] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.008721] [Yaw: -0.047468] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.663971] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.036028] [Yaw: -0.187248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.824684] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.096993] [Yaw: -0.186405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.960762] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.143331] [Yaw: -0.042364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.111057] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.117451] [Yaw: 0.102549] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.236870] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070707] [Yaw: -0.019132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.735111] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.015083] [Yaw: -0.177677] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.332266] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.031598] [Yaw: -0.050080] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.244673] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.080459] [Yaw: 0.108042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.552299] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.099320] [Yaw: 0.150223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.145830] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.045334] [Yaw: 0.004864] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.627333] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.002671] [Yaw: -0.147937] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.784489] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.057168] [Yaw: -0.069150] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.404346] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.026866] [Yaw: 0.091074] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.289938] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.034697] [Yaw: 0.116115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.255324] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.010709] [Yaw: -0.031071] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.236084] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.053449] [Yaw: -0.148004] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226274] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.067611] [Yaw: -0.007699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225347] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: 0.034251] [Yaw: 0.140926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229147] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.011814] [Yaw: 0.239117] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220635] [T/O: false ][Cruise: true ] +[Elevator: 0.105882] [Roll: -0.070300] [Yaw: 0.075663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204350] [T/O: false ][Cruise: true ] +[Elevator: 0.070396] [Roll: -0.031180] [Yaw: -0.079008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196714] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.111116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189933] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.033384] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185394] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.171193] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184522] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.323624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181336] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.479076] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176692] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175759] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172415] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168938] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168015] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168191] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166345] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164000] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160284] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153785] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145378] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142849] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135921] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.466479] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122355] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.327472] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111106] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.196229] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104614] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.060552] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108816] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124912] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142455] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147505] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148482] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148561] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148715] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148892] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148908] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148910] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148904] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148887] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148859] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148915] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148907] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148914] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148878] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148855] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148776] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148421] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148609] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148952] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148565] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148417] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148289] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148321] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148399] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148529] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148770] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149033] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148976] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148719] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148698] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148675] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148724] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148774] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148808] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148827] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.241704] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148847] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148861] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148857] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148854] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148851] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.174500] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.159020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.169020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.179020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.189020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.199020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148871] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148906] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.040980] [Roll: -0.001765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.030980] [Roll: 0.008235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.020980] [Roll: 0.018235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.010980] [Roll: 0.028235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: 0.000980] [Roll: 0.038235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.009020] [Roll: 0.048235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.019020] [Roll: 0.058235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.029020] [Roll: 0.068235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.039020] [Roll: 0.078235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.049020] [Roll: 0.088235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.059020] [Roll: 0.098235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.069020] [Roll: 0.108235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.079020] [Roll: 0.118235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.089020] [Roll: 0.128235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.099020] [Roll: 0.138235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.109020] [Roll: 0.148235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.119020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.129020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.139020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.149020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.159020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.169020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.179020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.189020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.199020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.209020] [Roll: 0.158235] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: false ][Cruise: true ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149256] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149254] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149250] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149240] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149228] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149200] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149195] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149249] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149396] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149619] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149959] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149774] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149537] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149484] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149628] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149899] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150309] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150784] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.151919] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.152187] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.152172] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.151986] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.151721] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.151194] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150922] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150851] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150747] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.150393] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.149395] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.147580] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.144920] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.140960] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.136155] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.129208] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.124479] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.120592] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.116889] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.114347] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: -0.007850] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.113138] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.022150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.112054] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.052150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.111237] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.082150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.110936] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.112150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.111517] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.142150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.112910] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.172150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.115082] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.202150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.117791] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.232150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.120631] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.262150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.123199] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.292150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.126124] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.322150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.129037] [T/O: true ][Cruise: false ] +[Elevator: -0.023644] [Roll: -0.039249] [Yaw: 0.352150] [Throttle:1.000000] [Flaps: 0.333333] [Data Ref: 14.132826] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148941] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148944] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148930] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148919] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148916] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148928] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148922] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148923] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148924] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148926] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148929] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148932] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148938] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148948] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148946] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148943] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148937] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148931] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148921] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148909] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148898] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148875] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148864] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148852] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.599102] [Flaps: 0.000000] [Data Ref: 14.148842] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148818] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148787] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148709] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148688] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148717] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148862] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149071] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148554] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148392] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148304] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148319] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148477] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148664] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149155] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149668] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149548] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149344] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148896] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148310] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147852] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147455] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147029] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146475] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145873] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143639] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141716] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138187] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133941] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129324] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124629] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119815] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116076] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112083] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109692] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107451] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105783] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.019593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104897] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.052902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104290] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.089054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104801] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.116987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105303] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.148405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107034] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.179079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109099] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.215742] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111300] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.245917] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113773] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.278145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116442] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.305466] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119194] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.337896] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122151] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.371908] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125045] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.404399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128480] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.435300] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131512] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.466059] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134714] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.502347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137422] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139396] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141038] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142089] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143237] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143908] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144675] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145066] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145325] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145815] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146854] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147864] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148646] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149397] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150682] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152180] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153576] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155370] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156984] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158446] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159833] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160714] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161508] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162433] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163258] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164227] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165090] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165950] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166183] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166403] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166955] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167512] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167875] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168173] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168296] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168283] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168240] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168093] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167950] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167969] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168004] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168364] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168834] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169437] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170043] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170749] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171947] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173377] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174418] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175360] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175716] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175804] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175931] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176128] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176329] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176718] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177139] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178145] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.503985] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179369] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.468820] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180991] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.435021] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182611] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.407511] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183641] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.371725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184395] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.340435] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184783] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.307093] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184565] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.275721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184323] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.242331] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184052] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.211019] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183786] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.179529] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184618] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.144781] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185553] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.114652] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186713] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.087006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187953] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.050429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189008] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.014570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189870] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.020593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190746] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.055295] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191624] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.083157] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192929] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.117431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195867] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.121750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199017] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.150381] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201439] [T/O: true ][Cruise: false ] +[Elevator: 0.055092] [Roll: -0.015876] [Yaw: -0.113345] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203602] [T/O: true ][Cruise: false ] +[Elevator: 0.069558] [Roll: -0.030342] [Yaw: -0.081523] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204126] [T/O: true ][Cruise: false ] +[Elevator: 0.078504] [Roll: -0.039289] [Yaw: -0.050689] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204437] [T/O: true ][Cruise: false ] +[Elevator: 0.086492] [Roll: -0.051416] [Yaw: -0.018737] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207296] [T/O: true ][Cruise: false ] +[Elevator: 0.098409] [Roll: -0.062930] [Yaw: 0.012505] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210751] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.071204] [Yaw: 0.045602] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214754] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.068778] [Yaw: 0.081750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218941] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059946] [Yaw: 0.110357] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222566] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043364] [Yaw: 0.144645] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224808] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034273] [Yaw: 0.180554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.023439] [Yaw: 0.215866] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228111] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008786] [Yaw: 0.251131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000167] [Yaw: 0.255571] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228850] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008959] [Yaw: 0.219065] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228430] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.022120] [Yaw: 0.187132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227324] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033289] [Yaw: 0.153119] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226092] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027780] [Yaw: 0.115040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225196] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035318] [Yaw: 0.090102] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224555] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044348] [Yaw: 0.053981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224459] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056057] [Yaw: 0.017298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224952] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070110] [Yaw: -0.017693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225827] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078264] [Yaw: -0.050311] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227530] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.077638] [Yaw: -0.080812] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229280] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069471] [Yaw: -0.110352] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232002] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.055676] [Yaw: -0.143550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234457] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045455] [Yaw: -0.130841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237991] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037556] [Yaw: -0.099243] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241207] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030161] [Yaw: -0.074797] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.245558] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.014395] [Yaw: -0.040555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.250824] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004095] [Yaw: -0.004615] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.255815] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004256] [Yaw: 0.028787] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261787] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.012401] [Yaw: 0.060096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.268085] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028936] [Yaw: 0.094652] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.275755] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034124] [Yaw: 0.118405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284023] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025176] [Yaw: 0.149647] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296007] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010322] [Yaw: 0.170701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.310262] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005690] [Yaw: 0.138024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.329650] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.016778] [Yaw: 0.106206] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.363276] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.030761] [Yaw: 0.076956] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.396413] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039451] [Yaw: 0.042196] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.450033] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.052341] [Yaw: 0.009044] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.504476] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064051] [Yaw: -0.024833] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.585924] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060513] [Yaw: -0.059909] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.685037] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043928] [Yaw: -0.089010] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.800420] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035572] [Yaw: -0.120458] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.940884] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034311] [Yaw: -0.125500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.084224] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024643] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.248165] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003141] [Yaw: -0.149820] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.447207] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005065] [Yaw: -0.116996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.681811] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.016193] [Yaw: -0.083554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.914205] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029460] [Yaw: -0.058632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.207495] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037094] [Yaw: -0.028096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.513611] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044782] [Yaw: 0.002656] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.893946] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056045] [Yaw: 0.037581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.292015] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069398] [Yaw: 0.069750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.742647] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.077808] [Yaw: 0.100090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.241335] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089447] [Yaw: 0.127913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.749979] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101439] [Yaw: 0.158697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.382021] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109447] [Yaw: 0.190730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.990824] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109297] [Yaw: 0.190129] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.731836] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101011] [Yaw: 0.156983] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.463385] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.086569] [Yaw: 0.122158] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.271353] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075635] [Yaw: 0.093571] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.173603] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067070] [Yaw: 0.060438] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.144920] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049806] [Yaw: 0.022754] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.195534] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.042177] [Yaw: -0.007763] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.276749] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032997] [Yaw: -0.044483] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.411167] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.022522] [Yaw: -0.074060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.649918] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008537] [Yaw: -0.103109] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.989845] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000546] [Yaw: -0.135070] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.280857] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007842] [Yaw: -0.168624] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.772289] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.019941] [Yaw: -0.167961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.283783] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032353] [Yaw: -0.133335] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.038422] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.041329] [Yaw: -0.097428] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.685898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.056381] [Yaw: -0.070331] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.352489] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072356] [Yaw: -0.012536] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.320442] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.082081] [Yaw: 0.026362] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.256828] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098974] [Yaw: 0.062563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.588730] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.107585] [Yaw: 0.095305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.478840] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119646] [Yaw: 0.095963] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.765850] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.135693] [Yaw: 0.061948] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.138248] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144760] [Yaw: 0.028802] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.946205] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152247] [Yaw: -0.006699] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.484764] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144228] [Yaw: -0.038774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.206501] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.133488] [Yaw: -0.072317] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.103195] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119045] [Yaw: -0.100289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.182526] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110375] [Yaw: -0.134971] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.166588] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101439] [Yaw: -0.170715] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.186966] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.088372] [Yaw: -0.203649] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.459702] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.076896] [Yaw: -0.232057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.453079] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063355] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.789886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.046720] [Yaw: -0.221060] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.067566] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035530] [Yaw: -0.185259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.599846] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025176] [Yaw: -0.148392] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.978981] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010000] [Yaw: -0.114509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.628677] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000344] [Yaw: -0.079464] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.307724] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008050] [Yaw: -0.050155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.103310] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.021930] [Yaw: -0.014965] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.580605] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032576] [Yaw: 0.016580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.483498] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041356] [Yaw: 0.051697] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.400169] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.064143] [Yaw: 0.107836] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.139565] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074434] [Yaw: 0.144795] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.957764] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.083354] [Yaw: 0.178473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.707253] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098835] [Yaw: 0.211026] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.427673] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109274] [Yaw: 0.252782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.543915] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.118213] [Yaw: 0.284052] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.713440] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.131428] [Yaw: 0.313837] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.743546] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.142795] [Yaw: 0.347651] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.798172] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.151552] [Yaw: 0.382680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 151.950928] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.418576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.932220] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.384709] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.172943] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.351237] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.197525] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.317305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.226822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.150165] [Yaw: 0.285788] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.174774] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.142137] [Yaw: 0.258743] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.518463] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.126101] [Yaw: 0.209472] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.688660] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108569] [Yaw: 0.197096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.990372] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099911] [Yaw: 0.231727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.202209] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.084572] [Yaw: 0.266150] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.164093] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075389] [Yaw: 0.291480] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.277252] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067037] [Yaw: 0.324008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.485107] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050532] [Yaw: 0.358658] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.359589] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041715] [Yaw: 0.393925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.525345] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033211] [Yaw: 0.425858] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.621979] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.021609] [Yaw: 0.454822] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.923965] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008123] [Yaw: 0.489077] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.793259] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001103] [Yaw: 0.485782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.641006] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009331] [Yaw: 0.452873] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.695770] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024444] [Yaw: 0.424119] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.487457] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033930] [Yaw: 0.393693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.541245] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042133] [Yaw: 0.360881] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.466599] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.058187] [Yaw: 0.326763] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.657684] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067723] [Yaw: 0.290950] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.217270] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075660] [Yaw: 0.265989] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.961838] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.085284] [Yaw: 0.233354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.767731] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100095] [Yaw: 0.199619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.507843] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108904] [Yaw: 0.164383] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.283691] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117748] [Yaw: 0.129008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.391296] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.132654] [Yaw: 0.097098] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.024536] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143788] [Yaw: 0.064062] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.478577] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152631] [Yaw: 0.028693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.159149] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.007502] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.622253] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.041179] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.012970] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150796] [Yaw: -0.081680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.322083] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142267] [Yaw: -0.132892] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.496490] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.130663] [Yaw: -0.166124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.749939] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117731] [Yaw: -0.199663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.869324] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108705] [Yaw: -0.195605] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.264221] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100143] [Yaw: -0.161354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.436005] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.084533] [Yaw: -0.125928] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.286835] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075329] [Yaw: -0.093473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.257477] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067495] [Yaw: -0.069150] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.913696] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059235] [Yaw: -0.036940] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.604828] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042930] [Yaw: -0.003091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.407013] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034020] [Yaw: 0.032546] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.078278] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.022178] [Yaw: 0.069369] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.551483] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008670] [Yaw: 0.099481] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.082336] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000693] [Yaw: 0.126641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.393585] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013372] [Yaw: 0.170298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.790619] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030782] [Yaw: 0.221165] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.058350] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039690] [Yaw: 0.256798] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.440002] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047820] [Yaw: 0.284637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.618774] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.060229] [Yaw: 0.280245] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.815063] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071853] [Yaw: 0.249843] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.866547] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080155] [Yaw: 0.216633] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.948181] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.094874] [Yaw: 0.182802] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.022949] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.105372] [Yaw: 0.147140] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.101929] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115085] [Yaw: 0.109647] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.191956] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.127263] [Yaw: 0.075012] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.948181] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148063] [Yaw: 0.015591] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.887360] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.020144] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.500336] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.015620] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.180420] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.017029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.746429] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.055436] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.362793] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.090934] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.783478] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.116999] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.153015] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.148221] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.513611] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.183182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.822998] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.214889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.959442] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.247725] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.027557] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.150927] [Yaw: 0.276632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.142273] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.142544] [Yaw: 0.304333] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.163605] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.130855] [Yaw: 0.338289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.089874] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117894] [Yaw: 0.371562] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.011871] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109784] [Yaw: 0.404003] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.939575] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100455] [Yaw: 0.435889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.879150] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.086488] [Yaw: 0.466239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.635590] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076155] [Yaw: 0.449720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.525848] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066750] [Yaw: 0.419859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.242767] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050492] [Yaw: 0.386281] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.053406] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040178] [Yaw: 0.345024] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.687561] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031403] [Yaw: 0.309925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.319824] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.016524] [Yaw: 0.277727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.837219] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005781] [Yaw: 0.246653] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.417084] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003447] [Yaw: 0.209740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.832886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011585] [Yaw: 0.177188] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.245941] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027815] [Yaw: 0.143641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.615448] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035670] [Yaw: 0.112596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.922455] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.044939] [Yaw: 0.086592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.256561] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060949] [Yaw: 0.050323] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.523560] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.070118] [Yaw: 0.013645] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.763123] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.078974] [Yaw: -0.021779] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.949127] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.094585] [Yaw: -0.059759] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.130402] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104782] [Yaw: -0.086896] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.246307] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113278] [Yaw: -0.119780] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.359161] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.121247] [Yaw: -0.151654] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.437531] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.136660] [Yaw: -0.183124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.506134] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.145709] [Yaw: -0.217520] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.561646] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.243498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.602997] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.277903] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.639343] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.309805] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.670715] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.342407] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.708466] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.149082] [Yaw: -0.349270] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.745026] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140537] [Yaw: -0.315091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.782013] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126402] [Yaw: -0.280256] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.846375] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115927] [Yaw: -0.248022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.907928] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106835] [Yaw: -0.218544] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.000000] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098897] [Yaw: -0.187744] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.089600] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.083875] [Yaw: -0.155985] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.226624] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067259] [Yaw: -0.092566] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.374451] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.056346] [Yaw: -0.061712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.561005] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043137] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.761810] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035849] [Yaw: -0.006140] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.983185] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.019580] [Yaw: 0.043193] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.245453] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.008164] [Yaw: 0.073225] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.539337] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000331] [Yaw: 0.073184] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.885254] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.011259] [Yaw: 0.029475] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.341675] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027720] [Yaw: -0.004999] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.733948] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036191] [Yaw: -0.038880] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.127411] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044039] [Yaw: -0.069372] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.617371] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.054918] [Yaw: -0.098071] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.140869] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069394] [Yaw: -0.110661] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.715881] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078050] [Yaw: -0.079575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.330505] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.091534] [Yaw: -0.048305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.991150] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.103432] [Yaw: -0.013723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.645538] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.111838] [Yaw: 0.019902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.298920] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.119319] [Yaw: 0.049826] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.135559] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.135457] [Yaw: 0.086601] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.913208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.143637] [Yaw: 0.109342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.813202] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152615] [Yaw: 0.143792] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.744659] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.177042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.790924] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.241014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.879028] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.274008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.964050] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.151207] [Yaw: 0.301053] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.154388] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.143148] [Yaw: 0.333292] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.196991] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.133711] [Yaw: 0.363950] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.533905] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.118657] [Yaw: 0.376588] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.788910] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110749] [Yaw: 0.344955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.052002] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.103240] [Yaw: 0.314921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.307526] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.094386] [Yaw: 0.288637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.662048] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081432] [Yaw: 0.266903] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.070618] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073238] [Yaw: 0.234129] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.571411] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.065635] [Yaw: 0.205779] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.012238] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050891] [Yaw: 0.176114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.557220] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044135] [Yaw: 0.149087] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.086212] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036004] [Yaw: 0.116566] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.962158] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027698] [Yaw: 0.090936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.855652] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.012961] [Yaw: 0.061217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.605682] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005162] [Yaw: 0.032413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.527100] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.002507] [Yaw: 0.001736] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.435028] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009791] [Yaw: -0.027401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.474792] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.023135] [Yaw: -0.058035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.304077] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032426] [Yaw: -0.081593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.411072] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.049792] [Yaw: -0.128856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.429138] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.058824] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.578674] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.062858] [Yaw: -0.136803] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.710602] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073084] [Yaw: -0.099109] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.702545] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.087740] [Yaw: -0.055893] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.946716] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100772] [Yaw: -0.024364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.009827] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.107682] [Yaw: -0.011122] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.161438] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115164] [Yaw: -0.041048] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.450684] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.122220] [Yaw: -0.067644] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.762115] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.136231] [Yaw: -0.088661] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.274475] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144306] [Yaw: -0.118401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.819763] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151728] [Yaw: -0.148089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.482208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.181169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.982880] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.210173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.509125] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.233594] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.998138] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.260004] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.716644] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.291433] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.489716] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142171] [Yaw: -0.345042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.464111] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.125364] [Yaw: -0.388488] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.685822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.114836] [Yaw: -0.416277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.680511] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106658] [Yaw: -0.447877] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.286163] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.099637] [Yaw: -0.425999] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.357819] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.084619] [Yaw: -0.399477] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.323486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075760] [Yaw: -0.369707] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.365326] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067690] [Yaw: -0.337427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.145050] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059755] [Yaw: -0.305688] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.596130] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042772] [Yaw: -0.269126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.700439] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034510] [Yaw: -0.236864] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.900574] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025862] [Yaw: -0.212508] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.180817] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011384] [Yaw: -0.182793] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.506226] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.002384] [Yaw: -0.146791] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.082031] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.006327] [Yaw: -0.111946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.452454] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.017795] [Yaw: -0.081151] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.589050] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030214] [Yaw: -0.055614] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.020203] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038404] [Yaw: -0.022854] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.360107] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.051566] [Yaw: 0.018554] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.615173] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068840] [Yaw: 0.067518] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.763855] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.077001] [Yaw: 0.097671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.957520] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085861] [Yaw: 0.120742] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.381836] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100635] [Yaw: 0.155481] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.037842] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108731] [Yaw: 0.187864] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.145874] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116751] [Yaw: 0.219946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.382446] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.126579] [Yaw: 0.249236] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.767883] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.140063] [Yaw: 0.279014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.103943] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148147] [Yaw: 0.306314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.302124] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.339083] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.994324] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.371965] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.257202] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.404626] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.424011] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.431768] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.960083] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.464968] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.166504] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.496099] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.575806] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.774780] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.147143] [Yaw: 0.482690] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.953308] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139031] [Yaw: 0.450240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.341248] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.123155] [Yaw: 0.421988] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.744324] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106292] [Yaw: 0.358501] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.190979] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.096064] [Yaw: 0.321541] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.475769] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080985] [Yaw: 0.290014] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.669067] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072932] [Yaw: 0.264276] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.764099] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062167] [Yaw: 0.230216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.000793] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048295] [Yaw: 0.197102] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.003113] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040197] [Yaw: 0.164711] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.004517] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032511] [Yaw: 0.133966] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.914063] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.021495] [Yaw: 0.104791] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.845398] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008909] [Yaw: 0.078772] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.056274] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000289] [Yaw: 0.044294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.140137] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.016473] [Yaw: -0.006020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.260559] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032766] [Yaw: -0.014035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.301086] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.041425] [Yaw: 0.020601] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.096191] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055119] [Yaw: 0.051415] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.159485] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065354] [Yaw: 0.084944] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.020203] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073767] [Yaw: 0.111498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.844360] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081691] [Yaw: 0.142451] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.630127] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.097822] [Yaw: 0.176037] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.278503] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.105154] [Yaw: 0.204930] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.644165] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113419] [Yaw: 0.237991] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.179565] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.121125] [Yaw: 0.268814] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.767822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.135431] [Yaw: 0.291381] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.054688] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144122] [Yaw: 0.273517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.278687] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151423] [Yaw: 0.219991] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.508850] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.185447] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.712097] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.157473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.805664] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.130851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.769958] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.105877] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.782410] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.082370] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.905945] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151402] [Yaw: 0.052665] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.984924] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143684] [Yaw: 0.021796] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.022156] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.135011] [Yaw: -0.008409] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.888916] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.120801] [Yaw: -0.037980] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.840759] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106035] [Yaw: -0.089662] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.804810] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.097047] [Yaw: -0.123553] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.762695] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.083117] [Yaw: -0.151413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.530029] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074973] [Yaw: -0.182463] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.103516] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067914] [Yaw: -0.210696] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.887634] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060471] [Yaw: -0.234272] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.522888] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.046593] [Yaw: -0.220870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.030029] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.038064] [Yaw: -0.195394] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.629456] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.030432] [Yaw: -0.164863] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.191101] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.017424] [Yaw: -0.132887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.655640] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007535] [Yaw: -0.104650] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.113770] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000029] [Yaw: -0.078517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.601379] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007768] [Yaw: -0.051281] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.985718] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.020947] [Yaw: -0.010808] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.332886] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038222] [Yaw: 0.039164] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.653625] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045600] [Yaw: 0.068675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.957947] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.054660] [Yaw: 0.095715] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.248352] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068178] [Yaw: 0.119771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.577942] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076161] [Yaw: 0.151701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.758789] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.084902] [Yaw: 0.181570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.001526] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101038] [Yaw: 0.219838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.125000] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.114355] [Yaw: 0.272476] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.154053] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.122777] [Yaw: 0.296534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.423706] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139197] [Yaw: 0.333258] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.768372] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149101] [Yaw: 0.372874] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.579285] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.398436] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.365051] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.416949] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.104492] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.393549] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.023560] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.363673] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.757385] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.336178] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.615662] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.303153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.492981] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.277107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.151428] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.251992] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.843567] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149563] [Yaw: 0.225701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.504639] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.142872] [Yaw: 0.198939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.132080] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.133649] [Yaw: 0.166856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.806580] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.112550] [Yaw: 0.118430] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.493469] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.104936] [Yaw: 0.148883] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.142517] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.096447] [Yaw: 0.179656] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.749939] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082310] [Yaw: 0.208015] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.342102] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074833] [Yaw: 0.237922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.900757] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068171] [Yaw: 0.264571] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.463989] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.054374] [Yaw: 0.289028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.017273] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045255] [Yaw: 0.317018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.547791] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038282] [Yaw: 0.344912] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.013428] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031206] [Yaw: 0.373217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.549011] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.019875] [Yaw: 0.403388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.026733] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004633] [Yaw: 0.444570] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.541504] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007568] [Yaw: 0.459924] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.043701] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.019449] [Yaw: 0.431611] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.587158] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032094] [Yaw: 0.401034] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.083801] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040168] [Yaw: 0.368740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.610474] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053351] [Yaw: 0.336435] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.065125] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063567] [Yaw: 0.306518] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.502563] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.071483] [Yaw: 0.279669] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.971558] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.079481] [Yaw: 0.250704] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.411499] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.091430] [Yaw: 0.221061] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.865479] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102988] [Yaw: 0.188047] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.318237] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110962] [Yaw: 0.156152] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.759521] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.129200] [Yaw: 0.108990] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.211304] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142523] [Yaw: 0.069124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.634888] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150802] [Yaw: 0.036006] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.061523] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.005959] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.504272] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.026847] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.912842] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.147774] [Yaw: -0.055961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.308105] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140854] [Yaw: -0.079400] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.729919] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.128876] [Yaw: -0.106955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.129578] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117545] [Yaw: -0.137663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.549744] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110534] [Yaw: -0.140175] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.989197] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.103550] [Yaw: -0.112237] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.399963] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.093637] [Yaw: -0.083592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.876892] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080837] [Yaw: -0.060605] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.339478] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073823] [Yaw: -0.032547] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.855530] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065463] [Yaw: 0.000893] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.382263] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.056814] [Yaw: 0.031470] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.896729] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042102] [Yaw: 0.062963] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.526489] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031647] [Yaw: 0.098707] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.090576] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011244] [Yaw: 0.147183] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.711426] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004408] [Yaw: 0.174523] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.349365] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.003263] [Yaw: 0.205207] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.994324] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.010868] [Yaw: 0.235630] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.708801] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.024311] [Yaw: 0.214124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.418274] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032990] [Yaw: 0.185687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.148438] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040840] [Yaw: 0.154289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.967163] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048742] [Yaw: 0.122681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.698608] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.060464] [Yaw: 0.099500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.582825] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075343] [Yaw: 0.055490] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.436951] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089649] [Yaw: 0.012859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.300903] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101099] [Yaw: -0.016159] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.270264] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108055] [Yaw: -0.026603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.163025] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115274] [Yaw: 0.002273] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.128784] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.123065] [Yaw: 0.030443] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.152832] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.137782] [Yaw: 0.060933] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.182861] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145370] [Yaw: 0.092097] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.330505] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152720] [Yaw: 0.143550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.359741] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.173632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.444824] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.202733] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.711243] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.233739] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.969299] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.263574] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.192261] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.286194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.411560] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.328100] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.849792] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148957] [Yaw: 0.372800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.191650] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.141419] [Yaw: 0.402952] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.619568] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.129369] [Yaw: 0.431437] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.216064] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117552] [Yaw: 0.459204] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.695129] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110562] [Yaw: 0.461855] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.359253] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102512] [Yaw: 0.433027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.970337] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090863] [Yaw: 0.405255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.643066] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079012] [Yaw: 0.374872] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.355225] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071979] [Yaw: 0.346738] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.132263] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.061893] [Yaw: 0.315942] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.233643] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047717] [Yaw: 0.284327] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.052246] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039859] [Yaw: 0.257475] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.920898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032591] [Yaw: 0.228402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.859253] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.022275] [Yaw: 0.194041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.771973] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.002397] [Yaw: 0.138999] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.692810] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005541] [Yaw: 0.108867] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.641724] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.013581] [Yaw: 0.086563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.762085] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028537] [Yaw: 0.054481] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.889465] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036526] [Yaw: 0.022525] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.094116] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.045391] [Yaw: -0.008429] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.313477] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059732] [Yaw: -0.038930] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.462708] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067769] [Yaw: -0.069973] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.697754] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075586] [Yaw: -0.094500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.017822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.083481] [Yaw: -0.123825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.198181] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098212] [Yaw: -0.153631] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.353455] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104718] [Yaw: -0.179655] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.537842] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112084] [Yaw: -0.209120] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.925354] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.120148] [Yaw: -0.234954] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.211792] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.133344] [Yaw: -0.262767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.630493] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143203] [Yaw: -0.294380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.022705] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143451] [Yaw: -0.295374] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.993896] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100472] [Yaw: -0.162672] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.149170] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055523] [Yaw: -0.028693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.011475] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005616] [Yaw: 0.108643] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.946777] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049708] [Yaw: 0.290302] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.995850] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102391] [Yaw: 0.432664] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.884583] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145232] [Yaw: 0.387698] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.881470] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.218009] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.592102] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.133436] [Yaw: 0.051186] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.826416] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090303] [Yaw: 0.011551] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.703491] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032575] [Yaw: 0.187347] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.019348] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.018296] [Yaw: 0.129858] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.019104] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.076046] [Yaw: -0.041440] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.661255] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.121192] [Yaw: -0.123076] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.535217] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.023182] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.417542] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098808] [Yaw: 0.204769] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.160278] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.048204] [Yaw: 0.346730] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.870300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005391] [Yaw: 0.441917] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.411438] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.055198] [Yaw: 0.287791] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.573486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.104249] [Yaw: 0.151631] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.102783] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.269054] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.948975] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.411186] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.271912] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115867] [Yaw: 0.277012] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.281250] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056903] [Yaw: 0.099079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.094543] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004296] [Yaw: -0.065168] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.346558] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.046396] [Yaw: -0.220575] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.616821] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100225] [Yaw: -0.112825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.419617] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.070099] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.623047] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.207596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.416138] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104651] [Yaw: 0.202920] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.072937] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055839] [Yaw: 0.052855] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.681580] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007139] [Yaw: 0.071693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.000732] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056838] [Yaw: 0.219559] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.362549] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.114592] [Yaw: 0.391702] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.830872] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.483660] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.999756] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.332592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.268372] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108419] [Yaw: 0.186618] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.330322] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045609] [Yaw: 0.002670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.154297] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001613] [Yaw: -0.143708] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.271729] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.054613] [Yaw: -0.293539] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.014435] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106156] [Yaw: -0.449885] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.392242] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.270926] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.082642] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144402] [Yaw: -0.118783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.373566] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102314] [Yaw: -0.018195] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.620178] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043748] [Yaw: -0.112739] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.993652] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007842] [Yaw: 0.043131] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.098511] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.058686] [Yaw: 0.191882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.178406] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110770] [Yaw: 0.345041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.197449] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.255144] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.378754] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134215] [Yaw: 0.084116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.853424] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079075] [Yaw: -0.076500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.019501] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027830] [Yaw: -0.005435] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.185455] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032964] [Yaw: 0.005399] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.302338] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.084662] [Yaw: -0.157558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.820801] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.139081] [Yaw: -0.309266] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.645020] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.261342] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.366241] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108965] [Yaw: -0.102526] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.683868] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059678] [Yaw: 0.055405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.150909] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004875] [Yaw: 0.204028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.661499] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045439] [Yaw: 0.366071] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.266571] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099707] [Yaw: 0.438135] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.084961] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.150398] [Yaw: 0.278217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.915314] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.113093] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.425415] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.026581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.443390] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.107495] [Yaw: 0.138648] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.011658] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.052512] [Yaw: 0.291821] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.845825] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004576] [Yaw: 0.111762] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.661713] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064280] [Yaw: -0.057119] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.433624] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.111399] [Yaw: -0.206379] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.981995] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.051870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.037170] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.120523] [Yaw: 0.117906] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.381760] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072285] [Yaw: 0.277263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.372345] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.023176] [Yaw: 0.426021] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.328613] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032466] [Yaw: 0.428092] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.036987] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080209] [Yaw: 0.277021] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.454819] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144792] [Yaw: 0.269364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.222504] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.414841] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.188843] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109909] [Yaw: 0.255321] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.620033] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.054090] [Yaw: 0.084379] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.069031] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000419] [Yaw: -0.079688] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.313576] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.054020] [Yaw: -0.232011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.063034] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113404] [Yaw: -0.122855] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 57.573975] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146126] [Yaw: 0.023340] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.583847] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098940] [Yaw: 0.062426] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.540775] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033033] [Yaw: -0.130615] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.453835] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.024034] [Yaw: -0.071792] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.535557] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079036] [Yaw: 0.103773] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.544579] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098845] [Yaw: 0.148322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.081335] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045101] [Yaw: 0.003932] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.706400] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000238] [Yaw: -0.136304] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.789486] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.057835] [Yaw: -0.068149] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.417166] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.028538] [Yaw: 0.085849] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.287595] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035101] [Yaw: 0.113146] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.254293] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.014003] [Yaw: -0.039770] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234007] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069196] [Yaw: -0.111452] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224708] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043902] [Yaw: 0.055765] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227164] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.015742] [Yaw: 0.199888] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227418] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035077] [Yaw: 0.177339] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215201] [T/O: true ][Cruise: false ] +[Elevator: 0.105172] [Roll: -0.066311] [Yaw: 0.026030] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203834] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.134176] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191630] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.038799] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187634] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.111638] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184060] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.265107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183566] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.428336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177224] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175848] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172805] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168806] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168104] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167920] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166088] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162580] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157496] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151155] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146401] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144214] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138518] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126383] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.359315] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113353] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.219675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104888] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.080184] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108118] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124584] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143312] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136914] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114389] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104484] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.104416] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110249] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.265489] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121626] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.401309] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136372] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143502] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145629] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149985] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157527] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162467] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166304] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168299] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167952] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169476] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173826] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176061] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178167] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.468401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184232] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.307288] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183778] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.136913] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188980] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.028824] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196736] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.137170] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204505] [T/O: true ][Cruise: false ] +[Elevator: 0.105133] [Roll: -0.066292] [Yaw: 0.025951] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.223276] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032355] [Yaw: 0.188229] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228889] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.024167] [Yaw: 0.183038] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224962] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047805] [Yaw: 0.040151] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227904] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067062] [Yaw: -0.119987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241033] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.016113] [Yaw: -0.043990] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.265634] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033430] [Yaw: 0.108132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.319592] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027758] [Yaw: 0.088970] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.522552] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055745] [Yaw: -0.071285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.148496] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.001117] [Yaw: -0.132787] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.466724] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.054281] [Yaw: 0.034053] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.629164] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108427] [Yaw: 0.186649] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.775475] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070533] [Yaw: 0.074289] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.742952] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.017397] [Yaw: -0.081748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.838284] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034711] [Yaw: -0.123900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.888187] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101811] [Yaw: 0.073911] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.049305] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150542] [Yaw: 0.005675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.670494] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104161] [Yaw: -0.159825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.986397] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039930] [Yaw: -0.202858] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.920158] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009966] [Yaw: -0.042489] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.518570] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074577] [Yaw: 0.145366] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.710823] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028980] [Yaw: 0.002193] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.172592] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.018833] [Yaw: -0.135705] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.720238] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081939] [Yaw: -0.216927] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.651001] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.139906] [Yaw: -0.056063] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.955864] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.119563] [Yaw: 0.096212] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.690746] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065370] [Yaw: -0.040481] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.376667] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004308] [Yaw: -0.154486] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.357462] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046580] [Yaw: 0.009848] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.587091] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.104819] [Yaw: 0.172218] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.413439] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074924] [Yaw: 0.091438] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.316305] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.023806] [Yaw: -0.072134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.097084] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.528499] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.050527] [Yaw: 0.012672] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.321157] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010503] [Yaw: 0.171424] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.267836] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.006495] [Yaw: 0.037744] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.241219] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.042570] [Yaw: -0.119301] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228004] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076453] [Yaw: -0.043068] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224833] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028696] [Yaw: 0.118706] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229061] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009901] [Yaw: 0.246670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222671] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064271] [Yaw: 0.097382] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204509] [T/O: true ][Cruise: false ] +[Elevator: 0.074403] [Roll: -0.035188] [Yaw: -0.066986] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.196766] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.105952] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189623] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.049919] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184481] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.201090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184772] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.363197] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179098] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176055] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174260] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169715] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167947] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168299] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166750] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163961] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160399] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152815] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148179] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144976] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141243] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129521] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.404394] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115780] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.248096] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105292] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.103082] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106272] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122706] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143726] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147744] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149671] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148271] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148998] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148746] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148858] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148890] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148939] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148934] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148947] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148945] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148940] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148933] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148925] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148911] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148899] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148891] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148883] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148876] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148869] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148865] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148860] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148856] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148853] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148850] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148848] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148846] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148845] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:0.751901] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148823] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148802] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148747] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148689] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148691] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148714] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148817] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148999] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148981] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148691] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148426] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148343] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148263] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148415] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148579] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149028] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149537] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149592] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149378] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148985] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148433] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147947] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147553] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147158] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146602] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146083] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144408] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142120] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138676] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134236] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129903] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124928] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120176] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116664] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112816] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109791] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107545] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.003922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105886] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.016726] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105004] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.049795] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104239] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.083672] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.104712] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.111284] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105171] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.138028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106589] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.171693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108578] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.206592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110822] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.240462] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113026] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.269327] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115311] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.292895] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117936] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.323953] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120547] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.353513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123499] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.386423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.126480] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.419043] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129666] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.446390] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.132808] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.478728] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135670] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139658] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141275] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142407] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143500] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144172] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144851] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145161] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145438] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146252] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147330] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148216] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148882] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149724] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151206] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152515] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154258] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156052] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157632] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158973] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160334] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161045] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161820] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162697] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163491] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164433] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165376] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165999] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166216] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166431] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167063] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167565] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167890] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168183] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168296] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168282] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168233] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168089] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167958] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167968] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168004] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168309] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168787] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169339] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169915] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170528] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171822] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173247] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174248] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175216] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175700] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175793] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175928] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176125] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176364] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176773] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177230] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178417] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.495724] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179621] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.461020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181117] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.433859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182592] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.406813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183683] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.371404] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184428] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.339214] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184774] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.306428] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184568] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.277026] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184361] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.247853] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184094] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.216444] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183837] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.185572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184435] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.151925] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185426] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.118684] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186460] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.093215] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187687] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.059074] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188745] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.025292] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189606] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.008551] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190430] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.044133] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191385] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.077021] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192295] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.105365] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194825] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197927] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.143577] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.200413] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.129142] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202743] [T/O: true ][Cruise: false ] +[Elevator: 0.066292] [Roll: -0.027076] [Yaw: -0.090946] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204048] [T/O: true ][Cruise: false ] +[Elevator: 0.076415] [Roll: -0.037199] [Yaw: -0.059045] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204385] [T/O: true ][Cruise: false ] +[Elevator: 0.085287] [Roll: -0.049006] [Yaw: -0.023558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206493] [T/O: true ][Cruise: false ] +[Elevator: 0.095696] [Roll: -0.061574] [Yaw: 0.007079] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210525] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.070437] [Yaw: 0.042533] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214140] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069882] [Yaw: 0.077334] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218727] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060434] [Yaw: 0.108895] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222487] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043309] [Yaw: 0.144754] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224912] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033450] [Yaw: 0.183848] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227078] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.021600] [Yaw: 0.219545] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228231] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.007916] [Yaw: 0.254609] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229250] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000566] [Yaw: 0.252637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228853] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009070] [Yaw: 0.218621] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228395] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.023274] [Yaw: 0.184825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227317] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033690] [Yaw: 0.151516] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226091] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028294] [Yaw: 0.117099] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225275] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.034618] [Yaw: 0.092225] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224629] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043429] [Yaw: 0.057657] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224355] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.051814] [Yaw: 0.025783] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224864] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068606] [Yaw: -0.011680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225467] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076739] [Yaw: -0.044211] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227212] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079344] [Yaw: -0.075695] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228953] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070727] [Yaw: -0.105328] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231458] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.058925] [Yaw: -0.137052] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.234128] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046685] [Yaw: -0.135761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.237021] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039209] [Yaw: -0.105854] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240533] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031865] [Yaw: -0.079910] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244511] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.018865] [Yaw: -0.049494] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249800] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005770] [Yaw: -0.011314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.255311] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003572] [Yaw: 0.026052] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261461] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011628] [Yaw: 0.058277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.267122] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027738] [Yaw: 0.091056] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.274817] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035172] [Yaw: 0.113360] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.283002] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.026735] [Yaw: 0.146531] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.294615] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010868] [Yaw: 0.172882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.310565] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005717] [Yaw: 0.137917] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.329504] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.015781] [Yaw: 0.107702] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.359807] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.029759] [Yaw: 0.080965] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.392158] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.038922] [Yaw: 0.044310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.446280] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.051737] [Yaw: 0.010251] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.507401] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064807] [Yaw: -0.027857] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.598500] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059880] [Yaw: -0.062439] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.685451] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043912] [Yaw: -0.089035] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.799480] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035294] [Yaw: -0.121569] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.933467] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034782] [Yaw: -0.123617] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.080654] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025085] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.249408] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003491] [Yaw: -0.151217] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.444345] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005430] [Yaw: -0.115533] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.704000] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.017810] [Yaw: -0.081128] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.934216] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029996] [Yaw: -0.056487] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.246759] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038351] [Yaw: -0.023065] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.592459] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046805] [Yaw: 0.010750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.955507] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.057597] [Yaw: 0.040683] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.349337] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070805] [Yaw: 0.075376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.822842] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078936] [Yaw: 0.103473] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.282068] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090877] [Yaw: 0.130774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.842291] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102510] [Yaw: 0.162982] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.443041] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110697] [Yaw: 0.195729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.045177] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108843] [Yaw: 0.188312] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.763842] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.100697] [Yaw: 0.155727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.493195] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085603] [Yaw: 0.120226] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.349533] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074910] [Yaw: 0.091396] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.327103] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.063731] [Yaw: 0.052951] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.397360] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047602] [Yaw: 0.013936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.666283] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037661] [Yaw: -0.025825] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.991600] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.026854] [Yaw: -0.067562] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.327856] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.010308] [Yaw: -0.096023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.898972] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.000234] [Yaw: -0.136320] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.558662] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009390] [Yaw: -0.174816] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.313011] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027586] [Yaw: -0.152400] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.066002] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036431] [Yaw: -0.117020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 37.053623] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.051026] [Yaw: -0.078362] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.008232] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069738] [Yaw: -0.023008] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.940418] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.079951] [Yaw: 0.017844] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.766022] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.094406] [Yaw: 0.051558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.855553] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104990] [Yaw: 0.086625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.931976] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112958] [Yaw: 0.111424] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.164043] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.122994] [Yaw: 0.087346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.588566] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.138822] [Yaw: 0.052555] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.913097] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.147146] [Yaw: 0.019260] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.587978] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150420] [Yaw: -0.014005] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.037792] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142825] [Yaw: -0.044388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.590431] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.132280] [Yaw: -0.074128] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.310440] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.118321] [Yaw: -0.103186] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.181145] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.110108] [Yaw: -0.136040] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.075729] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101878] [Yaw: -0.168960] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.234848] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.089410] [Yaw: -0.201573] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.307465] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.077265] [Yaw: -0.230951] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.524529] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063383] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.619064] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.046699] [Yaw: -0.221029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.064049] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035525] [Yaw: -0.185236] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.427383] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025967] [Yaw: -0.149974] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.772301] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010247] [Yaw: -0.115498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.194321] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.002164] [Yaw: -0.084922] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.458344] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005955] [Yaw: -0.058534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.869667] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.015302] [Yaw: -0.028219] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.115616] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029290] [Yaw: 0.003435] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.957191] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038032] [Yaw: 0.038402] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.738693] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.052259] [Yaw: 0.080107] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.475250] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070724] [Yaw: 0.129956] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.273956] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079017] [Yaw: 0.163127] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.820892] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.091031] [Yaw: 0.193826] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.614441] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.103072] [Yaw: 0.227973] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.477539] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.111398] [Yaw: 0.261277] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.385956] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.119447] [Yaw: 0.287751] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.117691] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134045] [Yaw: 0.319070] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.133911] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.143920] [Yaw: 0.352150] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.144684] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152494] [Yaw: 0.386444] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.484924] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.415114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.718506] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.378029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.636856] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.347580] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.924561] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.311018] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.872147] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149263] [Yaw: 0.283082] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.045212] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.140285] [Yaw: 0.251336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.242416] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120901] [Yaw: 0.195604] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.530670] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106680] [Yaw: 0.204653] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.334335] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.095853] [Yaw: 0.243589] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.683472] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080318] [Yaw: 0.276694] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.039642] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071890] [Yaw: 0.304598] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.928284] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.059720] [Yaw: 0.339383] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.007507] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047333] [Yaw: 0.371454] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.071320] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038138] [Yaw: 0.408232] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.305801] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029197] [Yaw: 0.437899] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.659409] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013532] [Yaw: 0.470976] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.947891] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.003023] [Yaw: 0.502288] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.243820] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.006469] [Yaw: 0.464320] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.488586] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.020037] [Yaw: 0.430728] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.755096] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.032227] [Yaw: 0.400506] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.576828] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040525] [Yaw: 0.367314] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.886032] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055560] [Yaw: 0.332017] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.019623] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.066904] [Yaw: 0.293406] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.913040] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074934] [Yaw: 0.268891] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.994568] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.085564] [Yaw: 0.232794] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.984467] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.100960] [Yaw: 0.196159] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.717163] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.109467] [Yaw: 0.162132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.674896] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.118603] [Yaw: 0.125589] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.483917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.133270] [Yaw: 0.096173] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.242981] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.144047] [Yaw: 0.063029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.877991] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.024401] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.416229] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.008422] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.761353] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.043306] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.202728] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150260] [Yaw: -0.085432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.473297] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.141820] [Yaw: -0.134680] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.961823] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.127782] [Yaw: -0.171886] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.480743] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115400] [Yaw: -0.208988] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.775482] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106849] [Yaw: -0.188178] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.873932] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098513] [Yaw: -0.154838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.060547] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081395] [Yaw: -0.117735] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.929352] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073681] [Yaw: -0.087709] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.795471] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065700] [Yaw: -0.062802] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.637207] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.055384] [Yaw: -0.028415] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.411530] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040356] [Yaw: 0.007203] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.214294] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031483] [Yaw: 0.042694] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.824432] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.017211] [Yaw: 0.079303] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 325.345856] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005863] [Yaw: 0.107901] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.013397] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.002843] [Yaw: 0.140785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.675568] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027007] [Yaw: 0.206658] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.209717] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036685] [Yaw: 0.244779] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.255981] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046992] [Yaw: 0.282151] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.514587] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.060385] [Yaw: 0.280011] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.836517] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072724] [Yaw: 0.246360] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.195862] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081397] [Yaw: 0.211668] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.413574] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098294] [Yaw: 0.175452] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.301788] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106506] [Yaw: 0.142605] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.375824] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115915] [Yaw: 0.107156] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.383026] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.130457] [Yaw: 0.066494] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.118561] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148511] [Yaw: 0.013800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.940857] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.020515] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.590942] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.014163] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.204376] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.018004] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.718048] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.053775] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.233429] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.086550] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.680023] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.115337] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.009064] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.144920] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.368622] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.179832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.764130] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.216134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.091064] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.251439] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.303314] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148768] [Yaw: 0.283108] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.442871] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139927] [Yaw: 0.314802] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.465912] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.124879] [Yaw: 0.350243] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.455933] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115132] [Yaw: 0.382610] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.354675] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106397] [Yaw: 0.417551] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.232635] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.097426] [Yaw: 0.444365] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.021698] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082686] [Yaw: 0.473844] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.896301] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073494] [Yaw: 0.440091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.701691] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062539] [Yaw: 0.411352] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.455200] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047639] [Yaw: 0.374870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.148407] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038822] [Yaw: 0.339600] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.824524] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029176] [Yaw: 0.301016] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.440735] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013277] [Yaw: 0.272857] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.946442] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004019] [Yaw: 0.239607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.469421] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004308] [Yaw: 0.206295] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.908112] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.014889] [Yaw: 0.170223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.347565] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.030362] [Yaw: 0.133456] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.711334] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.038401] [Yaw: 0.104405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.056793] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.051283] [Yaw: 0.073905] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.330139] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063501] [Yaw: 0.040114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.590759] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.071934] [Yaw: 0.006382] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.798645] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080398] [Yaw: -0.027474] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.962128] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.095368] [Yaw: -0.061325] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.142059] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.105783] [Yaw: -0.089897] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.260681] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113803] [Yaw: -0.121879] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.366669] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.122466] [Yaw: -0.154737] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.446533] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.138543] [Yaw: -0.189467] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.513214] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146373] [Yaw: -0.219513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.562744] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.244628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.602875] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.279023] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.639374] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.310041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.672760] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.343383] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.706696] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.149748] [Yaw: -0.351934] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.744598] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140544] [Yaw: -0.315116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.786438] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126042] [Yaw: -0.279535] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.849915] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.115366] [Yaw: -0.245778] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.905945] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.107071] [Yaw: -0.219252] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.000549] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098519] [Yaw: -0.186235] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.092133] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.084752] [Yaw: -0.157740] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.215576] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.068536] [Yaw: -0.097674] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.351013] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059451] [Yaw: -0.068549] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.506836] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.043137] [Yaw: -0.035294] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.718109] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.040767] [Yaw: -0.025813] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.903107] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024514] [Yaw: 0.033324] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.148865] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011020] [Yaw: 0.061804] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.413269] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003450] [Yaw: 0.088312] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.709595] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004913] [Yaw: 0.054856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.051697] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013603] [Yaw: 0.023774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.390686] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029184] [Yaw: -0.010851] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.826477] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037879] [Yaw: -0.045634] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.208527] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.045649] [Yaw: -0.074202] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.673401] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.056754] [Yaw: -0.101743] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.216675] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071152] [Yaw: -0.103627] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.764648] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078642] [Yaw: -0.077800] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.365234] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.092866] [Yaw: -0.045641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.009460] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.103889] [Yaw: -0.011895] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.637543] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.111517] [Yaw: 0.018617] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.369415] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120160] [Yaw: 0.053190] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.186646] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.135936] [Yaw: 0.087557] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.020996] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144992] [Yaw: 0.113406] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.959961] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.148078] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.827484] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.181431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.748993] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.240889] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.866028] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.273900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.862427] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152286] [Yaw: 0.296739] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.978302] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.143793] [Yaw: 0.330712] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.071960] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.135559] [Yaw: 0.360254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.355804] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.119587] [Yaw: 0.380307] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.745972] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110366] [Yaw: 0.343425] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.127502] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.102789] [Yaw: 0.313117] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.624146] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090646] [Yaw: 0.283028] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.220398] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078180] [Yaw: 0.253898] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.734497] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.069843] [Yaw: 0.220548] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.227722] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.057711] [Yaw: 0.189932] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.908539] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046950] [Yaw: 0.160350] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.571838] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038653] [Yaw: 0.127160] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.573547] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029378] [Yaw: 0.095978] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.525879] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.015571] [Yaw: 0.066437] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.400635] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.005596] [Yaw: 0.034149] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.338562] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001588] [Yaw: 0.005413] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.251709] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.009490] [Yaw: -0.026196] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.516602] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.023761] [Yaw: -0.059286] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.495880] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033270] [Yaw: -0.084124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.743591] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.052864] [Yaw: -0.137050] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.888611] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.058824] [Yaw: -0.152941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.127716] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065189] [Yaw: -0.127479] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.649658] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081074] [Yaw: -0.071141] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.357880] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.099128] [Yaw: -0.030940] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.957703] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.108169] [Yaw: -0.013068] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.754242] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.116705] [Yaw: -0.047210] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.142761] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126790] [Yaw: -0.074499] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.863525] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.140122] [Yaw: -0.101666] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.538147] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.148266] [Yaw: -0.134239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.286560] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.167285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.235352] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.202124] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.861969] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.228405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.709229] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.256298] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.500153] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.288250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.331360] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.143197] [Yaw: -0.340939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.329620] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.126164] [Yaw: -0.386887] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.588898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.114992] [Yaw: -0.415810] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.699036] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106631] [Yaw: -0.447984] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.026520] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.097094] [Yaw: -0.418190] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.216003] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.081432] [Yaw: -0.392397] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.014832] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.073750] [Yaw: -0.361667] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.008240] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.065558] [Yaw: -0.328900] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.923859] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.057297] [Yaw: -0.298908] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.008423] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042094] [Yaw: -0.266414] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.861633] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034130] [Yaw: -0.235723] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.233826] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.024982] [Yaw: -0.210748] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.615173] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010050] [Yaw: -0.177454] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.258179] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000769] [Yaw: -0.140331] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.340576] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007047] [Yaw: -0.109069] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.873901] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.019734] [Yaw: -0.078242] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.070618] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031548] [Yaw: -0.050281] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.844543] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040571] [Yaw: -0.014186] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.651245] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.059662] [Yaw: 0.040145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.877014] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072283] [Yaw: 0.081287] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.214172] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080366] [Yaw: 0.107764] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.421631] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.093176] [Yaw: 0.135371] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.927734] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.103788] [Yaw: 0.168094] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.143677] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.111673] [Yaw: 0.199632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.795898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120387] [Yaw: 0.234490] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.117676] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134821] [Yaw: 0.265720] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.339050] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.144255] [Yaw: 0.291588] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.942444] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.326285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.580872] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.357479] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.628052] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.388486] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.851624] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.420323] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.242920] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.445449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.615723] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.480191] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.086182] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.307556] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.150455] [Yaw: 0.495936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.863892] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.141401] [Yaw: 0.459721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.394104] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.127795] [Yaw: 0.428947] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.951599] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.110151] [Yaw: 0.373938] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.378357] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099335] [Yaw: 0.330675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.507629] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.084626] [Yaw: 0.298663] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.867554] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074857] [Yaw: 0.271631] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.952759] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066268] [Yaw: 0.238418] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.495789] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.049143] [Yaw: 0.200493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.736694] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040650] [Yaw: 0.166521] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.164978] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031799] [Yaw: 0.131116] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.123169] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.019706] [Yaw: 0.102108] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.211731] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007837] [Yaw: 0.074486] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.318542] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.000005] [Yaw: 0.043119] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.111450] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.016878] [Yaw: -0.007100] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.396057] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.033020] [Yaw: -0.013016] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.219360] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.041019] [Yaw: 0.018979] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.371704] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.056424] [Yaw: 0.054025] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.405212] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.066314] [Yaw: 0.088787] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.449524] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074761] [Yaw: 0.114732] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.000305] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.082026] [Yaw: 0.143789] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.718079] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098483] [Yaw: 0.178248] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.270996] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.105470] [Yaw: 0.206194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.977966] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113918] [Yaw: 0.239985] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.554688] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.122960] [Yaw: 0.272675] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.268799] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.138551] [Yaw: 0.290230] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.849182] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146646] [Yaw: 0.258208] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.098206] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.201941] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.585693] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.172022] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.934448] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.140603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.344849] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.108882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.618347] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.086078] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.770203] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.151493] [Yaw: 0.053031] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.155701] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142429] [Yaw: 0.016774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.626343] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.129357] [Yaw: -0.019718] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.911255] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112690] [Yaw: -0.066369] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.065247] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.101076] [Yaw: -0.109420] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.054199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.088490] [Yaw: -0.140666] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.872131] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.077739] [Yaw: -0.171395] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.703613] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069475] [Yaw: -0.204455] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.588013] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.061057] [Yaw: -0.232514] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.648010] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.045025] [Yaw: -0.218517] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.323853] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036282] [Yaw: -0.188266] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.184753] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.027569] [Yaw: -0.153414] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.943848] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010972] [Yaw: -0.118397] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.415710] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003841] [Yaw: -0.089955] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.938965] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.004805] [Yaw: -0.063134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.515442] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.012998] [Yaw: -0.032005] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.803772] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035341] [Yaw: 0.027640] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.266663] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043164] [Yaw: 0.058930] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.526611] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050491] [Yaw: 0.088239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.806458] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.065358] [Yaw: 0.111763] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.068909] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072715] [Yaw: 0.137917] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.429199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082106] [Yaw: 0.175483] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.831238] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.099249] [Yaw: 0.212681] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.118225] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.115265] [Yaw: 0.275207] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.426697] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.127447] [Yaw: 0.305875] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.671265] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.140554] [Yaw: 0.338687] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.705139] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.149207] [Yaw: 0.373299] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.724121] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.405045] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.676880] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.405651] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.702332] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.372562] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.697815] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.336211] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.677795] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.301669] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.479614] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.275937] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.276428] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.246602] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.075256] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.147084] [Yaw: 0.215786] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.845093] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.138762] [Yaw: 0.182500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.651123] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.116342] [Yaw: 0.120703] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.377380] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.106197] [Yaw: 0.143839] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.030396] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098173] [Yaw: 0.175935] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.756531] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.081840] [Yaw: 0.209894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.378906] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074436] [Yaw: 0.239511] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.995178] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066646] [Yaw: 0.270619] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.622009] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050559] [Yaw: 0.295803] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.127258] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043647] [Yaw: 0.323452] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.676758] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035929] [Yaw: 0.354322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.196899] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028704] [Yaw: 0.383223] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.707825] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.014802] [Yaw: 0.413534] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.246033] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001676] [Yaw: 0.466650] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.765930] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010656] [Yaw: 0.447572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.237366] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.025968] [Yaw: 0.421833] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.772705] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034751] [Yaw: 0.390406] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.228638] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.042673] [Yaw: 0.358721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.769043] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059715] [Yaw: 0.321923] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.264160] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.067130] [Yaw: 0.292729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.711548] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.074826] [Yaw: 0.269324] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.185669] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.083662] [Yaw: 0.236597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.619080] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.098325] [Yaw: 0.206701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.097229] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.106894] [Yaw: 0.172423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.521912] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117148] [Yaw: 0.137112] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.011292] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.139213] [Yaw: 0.082364] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.438232] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146585] [Yaw: 0.052874] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.831055] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: 0.021346] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.294861] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.011091] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.752319] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150115] [Yaw: -0.046599] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.238647] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.141712] [Yaw: -0.076823] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.673462] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.130496] [Yaw: -0.103714] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.157776] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.117367] [Yaw: -0.138376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.591064] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.109435] [Yaw: -0.135781] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.034058] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.102349] [Yaw: -0.107435] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.491272] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.090748] [Yaw: -0.079259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.031982] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.078294] [Yaw: -0.050431] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.589233] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.069287] [Yaw: -0.014404] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.126160] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.061004] [Yaw: 0.018727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.686951] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.047174] [Yaw: 0.050750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.288147] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.036836] [Yaw: 0.084029] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.957153] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.015224] [Yaw: 0.137027] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.537964] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.005721] [Yaw: 0.169271] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.258972] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.001988] [Yaw: 0.200110] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.892456] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009847] [Yaw: 0.231547] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.694763] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.024667] [Yaw: 0.213411] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.467041] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033815] [Yaw: 0.182388] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.329163] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.042513] [Yaw: 0.147596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.152649] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050604] [Yaw: 0.115233] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.077454] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067185] [Yaw: 0.088122] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.977783] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082273] [Yaw: 0.027771] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.975769] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.098680] [Yaw: -0.006486] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.067688] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.107140] [Yaw: -0.030265] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.091736] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.114814] [Yaw: 0.000434] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.194946] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.124428] [Yaw: 0.033171] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.342041] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139362] [Yaw: 0.067250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.523010] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.148018] [Yaw: 0.110637] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.731201] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.157805] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.840393] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.186076] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.019897] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.216835] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.252258] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.247396] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.441345] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.273688] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.779480] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.304996] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.231934] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152342] [Yaw: 0.359259] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.442017] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145309] [Yaw: 0.387393] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.860413] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.137878] [Yaw: 0.417115] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.332703] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.121677] [Yaw: 0.442975] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.962708] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.114039] [Yaw: 0.473255] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.704956] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.105149] [Yaw: 0.440938] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.585022] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.094532] [Yaw: 0.412592] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.387329] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079669] [Yaw: 0.377498] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.349915] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071634] [Yaw: 0.345360] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.233643] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.061589] [Yaw: 0.315335] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.078308] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048231] [Yaw: 0.285870] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.228760] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039012] [Yaw: 0.254087] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.293335] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031529] [Yaw: 0.224153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.342102] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.014861] [Yaw: 0.174269] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.569946] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.001254] [Yaw: 0.124394] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.910461] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.010475] [Yaw: 0.094066] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.255798] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.026630] [Yaw: 0.060466] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.651917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.035599] [Yaw: 0.026232] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.958923] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.044155] [Yaw: -0.005956] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.304382] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.059484] [Yaw: -0.037936] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.340576] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.066863] [Yaw: -0.067254] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.689819] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.075314] [Yaw: -0.093411] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.684509] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.082096] [Yaw: -0.120540] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.098511] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.097516] [Yaw: -0.151894] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.441040] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104920] [Yaw: -0.180466] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.659424] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112624] [Yaw: -0.211279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.215820] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.121233] [Yaw: -0.238208] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.912415] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.137981] [Yaw: -0.273494] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.652649] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.146583] [Yaw: -0.313839] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.162537] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.370382] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.423340] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.390155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.170898] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.152941] [Yaw: -0.357576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.827759] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.150925] [Yaw: -0.325269] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.790833] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.142538] [Yaw: -0.291721] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.370300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.130827] [Yaw: -0.255590] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.872375] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.112281] [Yaw: -0.209910] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.813232] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.103746] [Yaw: -0.175767] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.706848] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.094193] [Yaw: -0.145250] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.374268] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080104] [Yaw: -0.112573] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.639221] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.070575] [Yaw: -0.078392] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.378357] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.063374] [Yaw: -0.053497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.318542] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.052464] [Yaw: -0.022576] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.014587] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039750] [Yaw: 0.009629] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.238403] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031043] [Yaw: 0.044456] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.553223] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.011904] [Yaw: 0.017365] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.463257] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.002166] [Yaw: -0.028272] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.560730] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009572] [Yaw: -0.057896] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.499817] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.024363] [Yaw: -0.085563] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.489197] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.033755] [Yaw: -0.115412] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.716492] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041997] [Yaw: -0.148380] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.158508] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066723] [Yaw: -0.215855] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.326050] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074405] [Yaw: -0.238902] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.378723] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082050] [Yaw: -0.216596] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.056763] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.096270] [Yaw: -0.187853] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.212219] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.105329] [Yaw: -0.155153] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.204041] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.113726] [Yaw: -0.121565] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.226257] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120613] [Yaw: -0.094020] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.162964] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.134818] [Yaw: -0.070322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.862183] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.143407] [Yaw: -0.042057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.784912] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.151365] [Yaw: 0.014838] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.402405] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.047893] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.487671] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.082843] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.385742] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.105354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.371765] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.135929] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.612549] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.169155] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.472351] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.200641] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.275513] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.142122] [Yaw: 0.251121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.971741] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.127595] [Yaw: 0.285078] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.701294] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.117027] [Yaw: 0.312285] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.288940] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.109931] [Yaw: 0.340668] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.240967] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101698] [Yaw: 0.340123] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.938782] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.089273] [Yaw: 0.307958] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.025574] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.077791] [Yaw: 0.280432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.594116] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070385] [Yaw: 0.254089] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.493408] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.058691] [Yaw: 0.223263] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.120300] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047234] [Yaw: 0.192857] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.862183] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039459] [Yaw: 0.161758] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.517822] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031927] [Yaw: 0.131630] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.242798] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.020913] [Yaw: 0.103918] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.784668] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008405] [Yaw: 0.076757] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.608887] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.003236] [Yaw: 0.030195] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.152893] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.018836] [Yaw: -0.018065] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.769409] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.031063] [Yaw: -0.049743] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.608765] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.039694] [Yaw: -0.079867] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.298950] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.053216] [Yaw: -0.110354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.158875] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.064730] [Yaw: -0.145194] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.664490] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.072878] [Yaw: -0.177785] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.035889] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.080893] [Yaw: -0.209846] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.471802] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.095139] [Yaw: -0.234865] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.919373] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.104691] [Yaw: -0.219262] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.477661] [T/O: true ][Cruise: false ] +[Elevator: 0.091613] [Roll: -0.113017] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.647522] [T/O: false ][Cruise: true ] +[Elevator: 0.083409] [Roll: -0.120512] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.163452] [T/O: false ][Cruise: true ] +[Elevator: 0.074568] [Roll: -0.137138] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.661621] [T/O: false ][Cruise: true ] +[Elevator: 0.064284] [Roll: -0.146289] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.881470] [T/O: false ][Cruise: true ] +[Elevator: 0.050064] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.020447] [T/O: false ][Cruise: true ] +[Elevator: 0.042345] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.961670] [T/O: false ][Cruise: true ] +[Elevator: 0.034493] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.081299] [T/O: false ][Cruise: true ] +[Elevator: 0.026677] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.066345] [T/O: false ][Cruise: true ] +[Elevator: 0.011105] [Roll: -0.152282] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.242249] [T/O: false ][Cruise: true ] +[Elevator: 0.003787] [Roll: -0.144963] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.210815] [T/O: false ][Cruise: true ] +[Elevator: -0.004222] [Roll: -0.136955] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.358398] [T/O: false ][Cruise: true ] +[Elevator: -0.019724] [Roll: -0.121452] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.462402] [T/O: false ][Cruise: true ] +[Elevator: -0.028363] [Roll: -0.112813] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.240112] [T/O: false ][Cruise: true ] +[Elevator: -0.035976] [Roll: -0.105201] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.194824] [T/O: false ][Cruise: true ] +[Elevator: -0.045485] [Roll: -0.095692] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.779053] [T/O: false ][Cruise: true ] +[Elevator: -0.059106] [Roll: -0.082070] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.663940] [T/O: false ][Cruise: true ] +[Elevator: -0.067176] [Roll: -0.074000] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.426147] [T/O: false ][Cruise: true ] +[Elevator: -0.074469] [Roll: -0.066708] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.060791] [T/O: false ][Cruise: true ] +[Elevator: -0.089783] [Roll: -0.059030] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.581543] [T/O: false ][Cruise: true ] +[Elevator: -0.097659] [Roll: -0.043898] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.959473] [T/O: false ][Cruise: true ] +[Elevator: -0.105907] [Roll: -0.035269] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.594849] [T/O: false ][Cruise: true ] +[Elevator: -0.116383] [Roll: -0.024793] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.999634] [T/O: false ][Cruise: true ] +[Elevator: -0.132505] [Roll: -0.008671] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.164673] [T/O: false ][Cruise: true ] +[Elevator: -0.146128] [Roll: 0.004952] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.387085] [T/O: false ][Cruise: true ] +[Elevator: -0.156765] [Roll: 0.015589] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.547119] [T/O: false ][Cruise: true ] +[Elevator: -0.170853] [Roll: 0.029676] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.479858] [T/O: false ][Cruise: true ] +[Elevator: -0.178129] [Roll: 0.036953] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.443359] [T/O: false ][Cruise: true ] +[Elevator: -0.188974] [Roll: 0.045467] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.322021] [T/O: false ][Cruise: true ] +[Elevator: -0.202369] [Roll: 0.055719] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.981079] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.069243] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.702271] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.077712] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.197266] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.087856] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.546509] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.100088] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.892578] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.108019] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.044556] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.116616] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.186523] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.125819] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.093994] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.139103] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.980225] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.146310] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.748047] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.279175] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.896729] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.137329] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.405029] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.464966] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.151043] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.413208] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.143233] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.134608] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.185791] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.121084] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.863159] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.105494] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.155640] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.095856] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.609497] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.081781] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.701660] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.072852] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.504639] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.061515] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.276611] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.047891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.954712] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.037155] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.920044] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.021703] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.370972] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.009107] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.035767] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.001182] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.527588] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: -0.005822] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.872620] [T/O: false ][Cruise: true ] +[Elevator: -0.205656] [Roll: -0.016139] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.115967] [T/O: false ][Cruise: true ] +[Elevator: -0.196717] [Roll: -0.029092] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.115112] [T/O: false ][Cruise: true ] +[Elevator: -0.181797] [Roll: -0.037810] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.987061] [T/O: false ][Cruise: true ] +[Elevator: -0.169473] [Roll: -0.050135] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.343079] [T/O: false ][Cruise: true ] +[Elevator: -0.149753] [Roll: -0.069854] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.890259] [T/O: false ][Cruise: true ] +[Elevator: -0.142455] [Roll: -0.077153] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.548645] [T/O: false ][Cruise: true ] +[Elevator: -0.134600] [Roll: -0.087663] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.000427] [T/O: false ][Cruise: true ] +[Elevator: -0.125733] [Roll: -0.099879] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.373596] [T/O: false ][Cruise: true ] +[Elevator: -0.112327] [Roll: -0.107281] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.123718] [T/O: false ][Cruise: true ] +[Elevator: -0.105187] [Roll: -0.114421] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.349060] [T/O: false ][Cruise: true ] +[Elevator: -0.097163] [Roll: -0.123321] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.429443] [T/O: false ][Cruise: true ] +[Elevator: -0.088691] [Roll: -0.138008] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.492004] [T/O: false ][Cruise: true ] +[Elevator: -0.074110] [Roll: -0.145497] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.523621] [T/O: false ][Cruise: true ] +[Elevator: -0.066603] [Roll: -0.152877] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.480957] [T/O: false ][Cruise: true ] +[Elevator: -0.059350] [Roll: -0.145625] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.029846] [T/O: false ][Cruise: true ] +[Elevator: -0.040234] [Roll: -0.126508] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.199097] [T/O: false ][Cruise: true ] +[Elevator: -0.029841] [Roll: -0.116115] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.170288] [T/O: false ][Cruise: true ] +[Elevator: -0.021829] [Roll: -0.108104] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.226257] [T/O: false ][Cruise: true ] +[Elevator: -0.009734] [Roll: -0.100945] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.316895] [T/O: false ][Cruise: true ] +[Elevator: 0.001006] [Roll: -0.088185] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.086731] [T/O: false ][Cruise: true ] +[Elevator: 0.008933] [Roll: -0.077341] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.531128] [T/O: false ][Cruise: true ] +[Elevator: 0.021587] [Roll: -0.069599] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.895752] [T/O: false ][Cruise: true ] +[Elevator: 0.031754] [Roll: -0.062364] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.603882] [T/O: false ][Cruise: true ] +[Elevator: 0.039713] [Roll: -0.049987] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.365051] [T/O: false ][Cruise: true ] +[Elevator: 0.047662] [Roll: -0.038613] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.179871] [T/O: false ][Cruise: true ] +[Elevator: 0.061035] [Roll: -0.030267] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.912476] [T/O: false ][Cruise: true ] +[Elevator: 0.071472] [Roll: -0.017841] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.783936] [T/O: false ][Cruise: true ] +[Elevator: 0.078288] [Roll: -0.007987] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.700256] [T/O: false ][Cruise: true ] +[Elevator: 0.095361] [Roll: 0.004750] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.870483] [T/O: false ][Cruise: true ] +[Elevator: 0.110762] [Roll: 0.021524] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.645630] [T/O: false ][Cruise: true ] +[Elevator: 0.117322] [Roll: 0.031048] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.129089] [T/O: false ][Cruise: true ] +[Elevator: 0.129186] [Roll: 0.039103] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.550598] [T/O: false ][Cruise: true ] +[Elevator: 0.141630] [Roll: 0.047513] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.250488] [T/O: false ][Cruise: true ] +[Elevator: 0.150221] [Roll: 0.061227] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.083496] [T/O: false ][Cruise: true ] +[Elevator: 0.158363] [Roll: 0.072088] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.593262] [T/O: false ][Cruise: true ] +[Elevator: 0.168338] [Roll: 0.078286] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.038269] [T/O: false ][Cruise: true ] +[Elevator: 0.183426] [Roll: 0.092786] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.000854] [T/O: false ][Cruise: true ] +[Elevator: 0.194159] [Roll: 0.107884] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.790039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.115680] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.908691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.122449] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.171631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.137981] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.568298] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.144821] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.453613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152401] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.455627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.501282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.100403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.766174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.148878] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.747192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.141616] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.092285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.132372] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.408508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120024] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.315796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.112052] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.483643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.104108] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.587036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.096890] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.370422] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.083634] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.910278] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.071639] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.937073] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.057130] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.733276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.046514] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.446838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.039654] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.515564] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.032446] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.090149] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.022482] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.093018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.009558] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.358948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000874] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.775940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010985] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.238403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.023840] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.538147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.032879] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.024597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.041246] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.096191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.053111] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.099121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.063217] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.356934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070855] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.649048] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.082702] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.881592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100612] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.727722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.108064] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.662598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.115744] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.678284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.127433] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.733582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.146742] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.824463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.767883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.158447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.065491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.733643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.667114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.218994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.723999] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152724] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.247437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.145747] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.660034] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.138632] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.983521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.124209] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.625610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.115317] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.022339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100490] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.561523] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.085472] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.137939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.077922] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.549072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070263] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.395142] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.062547] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.004883] [T/O: false ][Cruise: true ] +[Elevator: 0.196423] [Roll: -0.051669] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.361572] [T/O: false ][Cruise: true ] +[Elevator: 0.185828] [Roll: -0.036808] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.347656] [T/O: false ][Cruise: true ] +[Elevator: 0.170818] [Roll: -0.021798] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1155.155762] [T/O: false ][Cruise: true ] +[Elevator: 0.158635] [Roll: -0.009615] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.743652] [T/O: false ][Cruise: true ] +[Elevator: 0.150893] [Roll: -0.001874] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.833130] [T/O: false ][Cruise: true ] +[Elevator: 0.143210] [Roll: 0.005810] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.476563] [T/O: false ][Cruise: true ] +[Elevator: 0.133777] [Roll: 0.015243] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.923950] [T/O: false ][Cruise: true ] +[Elevator: 0.118429] [Roll: 0.030591] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.528076] [T/O: false ][Cruise: true ] +[Elevator: 0.102972] [Roll: 0.044593] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.093750] [T/O: false ][Cruise: true ] +[Elevator: 0.088657] [Roll: 0.054059] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.522705] [T/O: false ][Cruise: true ] +[Elevator: 0.081314] [Roll: 0.067706] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.732666] [T/O: false ][Cruise: true ] +[Elevator: 0.073607] [Roll: 0.075413] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.685425] [T/O: false ][Cruise: true ] +[Elevator: 0.065101] [Roll: 0.083919] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.818726] [T/O: false ][Cruise: true ] +[Elevator: 0.049315] [Roll: 0.099705] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.718140] [T/O: false ][Cruise: true ] +[Elevator: 0.034445] [Roll: 0.114574] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.560425] [T/O: false ][Cruise: true ] +[Elevator: 0.025948] [Roll: 0.123072] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.285767] [T/O: false ][Cruise: true ] +[Elevator: 0.011437] [Roll: 0.137582] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.386719] [T/O: false ][Cruise: true ] +[Elevator: 0.004108] [Roll: 0.144911] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.025513] [T/O: false ][Cruise: true ] +[Elevator: -0.003336] [Roll: 0.152356] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.361450] [T/O: false ][Cruise: true ] +[Elevator: -0.018429] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.856567] [T/O: false ][Cruise: true ] +[Elevator: -0.034419] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.522339] [T/O: false ][Cruise: true ] +[Elevator: -0.041635] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.515869] [T/O: false ][Cruise: true ] +[Elevator: -0.054193] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.967651] [T/O: false ][Cruise: true ] +[Elevator: -0.063496] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.221680] [T/O: false ][Cruise: true ] +[Elevator: -0.071025] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.322754] [T/O: false ][Cruise: true ] +[Elevator: -0.081727] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.615967] [T/O: false ][Cruise: true ] +[Elevator: -0.092974] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.361450] [T/O: false ][Cruise: true ] +[Elevator: -0.100108] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.994141] [T/O: false ][Cruise: true ] +[Elevator: -0.109512] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.940430] [T/O: false ][Cruise: true ] +[Elevator: -0.130501] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.379517] [T/O: false ][Cruise: true ] +[Elevator: -0.137889] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.885010] [T/O: false ][Cruise: true ] +[Elevator: -0.145254] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.876099] [T/O: false ][Cruise: true ] +[Elevator: -0.152327] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.797729] [T/O: false ][Cruise: true ] +[Elevator: -0.166407] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.833374] [T/O: false ][Cruise: true ] +[Elevator: -0.174957] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.418213] [T/O: false ][Cruise: true ] +[Elevator: -0.194626] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.820801] [T/O: false ][Cruise: true ] +[Elevator: -0.205043] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.774048] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.769409] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.730713] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.362793] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.031006] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.424194] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.675781] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.996582] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.004272] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.685791] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.357300] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.712036] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.107178] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.291870] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.229858] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.141846] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.851196] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.354614] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.893555] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.975342] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.120972] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.611084] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.160767] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.360718] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.499268] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.435425] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.020020] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.647827] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.766846] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.814087] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.602295] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.971680] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.315063] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.119019] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.820313] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.206787] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.844727] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.109619] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.208374] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.744019] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.349243] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.335083] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.924561] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.561523] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.569580] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.616211] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.348511] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.083862] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.428345] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.084106] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.217163] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.217896] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.882446] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.314453] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.747192] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.776245] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.613525] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.678223] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.044556] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.647705] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.620850] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.605103] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.140484] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.910156] [T/O: false ][Cruise: true ] +[Elevator: -0.202110] [Roll: 0.125789] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.420166] [T/O: false ][Cruise: true ] +[Elevator: -0.190088] [Roll: 0.116613] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.468018] [T/O: false ][Cruise: true ] +[Elevator: -0.179820] [Roll: 0.109231] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.979004] [T/O: false ][Cruise: true ] +[Elevator: -0.171792] [Roll: 0.101204] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.160343] [Roll: 0.089755] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.150271] [Roll: 0.079683] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.066528] [T/O: false ][Cruise: true ] +[Elevator: -0.141730] [Roll: 0.069457] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.177979] [T/O: false ][Cruise: true ] +[Elevator: -0.127368] [Roll: 0.049959] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.835938] [T/O: false ][Cruise: true ] +[Elevator: -0.113738] [Roll: 0.043144] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.569946] [T/O: false ][Cruise: true ] +[Elevator: -0.106986] [Roll: 0.036398] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.487793] [T/O: false ][Cruise: true ] +[Elevator: -0.099057] [Roll: 0.028469] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.298584] [T/O: false ][Cruise: true ] +[Elevator: -0.091469] [Roll: 0.014311] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.619141] [T/O: false ][Cruise: true ] +[Elevator: -0.078563] [Roll: 0.005948] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.425049] [T/O: false ][Cruise: true ] +[Elevator: -0.068417] [Roll: -0.002171] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.653198] [T/O: false ][Cruise: true ] +[Elevator: -0.047912] [Roll: -0.022677] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.664185] [T/O: false ][Cruise: true ] +[Elevator: -0.038139] [Roll: -0.032449] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.397949] [T/O: false ][Cruise: true ] +[Elevator: -0.030233] [Roll: -0.040356] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.997803] [T/O: false ][Cruise: true ] +[Elevator: -0.023742] [Roll: -0.050555] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.813477] [T/O: false ][Cruise: true ] +[Elevator: -0.012421] [Roll: -0.062417] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.974731] [T/O: false ][Cruise: true ] +[Elevator: 0.000303] [Roll: -0.070891] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.333496] [T/O: false ][Cruise: true ] +[Elevator: 0.006892] [Roll: -0.077480] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.919922] [T/O: false ][Cruise: true ] +[Elevator: 0.019431] [Roll: -0.090020] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.848206] [T/O: false ][Cruise: true ] +[Elevator: 0.037911] [Roll: -0.108499] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.983276] [T/O: false ][Cruise: true ] +[Elevator: 0.046327] [Roll: -0.116915] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.331726] [T/O: false ][Cruise: true ] +[Elevator: 0.058176] [Roll: -0.128764] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.094727] [T/O: false ][Cruise: true ] +[Elevator: 0.070247] [Roll: -0.140835] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.465576] [T/O: false ][Cruise: true ] +[Elevator: 0.076613] [Roll: -0.142995] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.870605] [T/O: false ][Cruise: true ] +[Elevator: 0.084072] [Roll: -0.133817] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.566711] [T/O: false ][Cruise: true ] +[Elevator: 0.095349] [Roll: -0.118992] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.273132] [T/O: false ][Cruise: true ] +[Elevator: 0.108445] [Roll: -0.111163] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.171631] [T/O: false ][Cruise: true ] +[Elevator: 0.122505] [Roll: -0.097103] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.882324] [T/O: false ][Cruise: true ] +[Elevator: 0.138688] [Roll: -0.080920] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.296265] [T/O: false ][Cruise: true ] +[Elevator: 0.146391] [Roll: -0.073217] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.042175] [T/O: false ][Cruise: true ] +[Elevator: 0.154722] [Roll: -0.064886] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.187805] [T/O: false ][Cruise: true ] +[Elevator: 0.163299] [Roll: -0.056309] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.205688] [T/O: false ][Cruise: true ] +[Elevator: 0.177878] [Roll: -0.041730] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.538391] [T/O: false ][Cruise: true ] +[Elevator: 0.186519] [Roll: -0.031986] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.249023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.011343] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.267151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.004587] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.899353] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.003045] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.344910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010667] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.857300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.023450] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.972778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.031959] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.424744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.043795] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.937317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.056125] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.226196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.068800] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.947571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.076415] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.874695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.085982] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.019836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100860] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.962585] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.114723] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.749878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.122905] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.441406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.137906] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.709534] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.145619] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.088257] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.196594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.062683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.145528] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.978088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.123339] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.426514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.113770] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.848755] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.105938] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.120117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.098508] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.815552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.084988] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.504761] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.076442] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.762146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.057600] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.022705] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.045785] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.031616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.038631] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.436218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.031719] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.802368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.022137] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.408813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.009960] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.026062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.002948] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.747681] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.004352] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.405579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.025252] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.080017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.034157] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.614929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.041207] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.705750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.055286] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.925476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.069869] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.283752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080011] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.242371] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.091723] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.960876] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.101678] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.271545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.112514] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.736877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.128171] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.153992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.139951] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.286682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.146801] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.606018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.783569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.731934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.228088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.650818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.553101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.319519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.833618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.134766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.202271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.821045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.501221] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.151010] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.034180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.144301] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.734375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.137059] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.102295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.123523] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.115543] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.917236] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.103492] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.423584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.088905] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.895508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.078436] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.794189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.071085] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.445557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.058279] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.789307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040848] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.749878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.033747] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.928833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.025852] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.502075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.005491] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.689331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.002202] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.889404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.009316] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.120239] [T/O: false ][Cruise: true ] +[Elevator: 0.195498] [Roll: 0.020769] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.079224] [T/O: false ][Cruise: true ] +[Elevator: 0.185323] [Roll: 0.034285] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.961060] [T/O: false ][Cruise: true ] +[Elevator: 0.171288] [Roll: 0.045728] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.918701] [T/O: false ][Cruise: true ] +[Elevator: 0.158684] [Roll: 0.055182] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.846191] [T/O: false ][Cruise: true ] +[Elevator: 0.148775] [Roll: 0.070833] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.194336] [T/O: false ][Cruise: true ] +[Elevator: 0.133604] [Roll: 0.086004] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.941040] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.099608] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.827026] [T/O: false ][Cruise: true ] +[Elevator: 0.112700] [Roll: 0.106908] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.690674] [T/O: false ][Cruise: true ] +[Elevator: 0.102863] [Roll: 0.116745] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.715088] [T/O: false ][Cruise: true ] +[Elevator: 0.082013] [Roll: 0.137595] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.704224] [T/O: false ][Cruise: true ] +[Elevator: 0.074810] [Roll: 0.144798] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: -0.207843] [Roll: 0.152941] [Yaw: -0.215686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.495239] [T/O: false ][Cruise: true ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164859] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166387] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168303] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167946] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169262] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173861] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175948] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.505882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178397] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.459625] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184321] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.309514] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183840] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.147882] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188519] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: 0.003644] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192582] [T/O: true ][Cruise: false ] +[Elevator: 0.050980] [Roll: -0.011765] [Yaw: -0.123240] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203959] [T/O: true ][Cruise: false ] +[Elevator: 0.082041] [Roll: -0.042825] [Yaw: -0.036543] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214855] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.061009] [Yaw: 0.107169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227478] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009217] [Yaw: 0.218036] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225682] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.036665] [Yaw: 0.084713] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225120] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080429] [Yaw: -0.058971] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.233889] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040146] [Yaw: -0.109603] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.251348] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.004687] [Yaw: 0.030513] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.281027] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.014657] [Yaw: 0.170686] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.370860] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.041423] [Yaw: 0.034310] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.669126] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.037635] [Yaw: -0.112205] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.343369] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009957] [Yaw: -0.097427] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.623846] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.064189] [Yaw: 0.053868] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.884600] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.111775] [Yaw: 0.200042] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.311958] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.066483] [Yaw: 0.058456] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.993326] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.011783] [Yaw: -0.090169] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.259293] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.034433] [Yaw: -0.125013] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.147923] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.096943] [Yaw: 0.056630] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.015728] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.145011] [Yaw: 0.027799] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.863041] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.113427] [Yaw: -0.122761] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.399986] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.060820] [Yaw: -0.239216] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.403961] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: -0.006030] [Yaw: -0.098628] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.839462] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.039340] [Yaw: 0.043634] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.009743] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101750] [Yaw: 0.222685] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.636093] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145784] [Yaw: 0.359607] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.423035] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.351940] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.670410] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.323670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.056107] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.295487] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.454483] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.146171] [Yaw: 0.273806] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.825592] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.139228] [Yaw: 0.247106] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.337753] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.121609] [Yaw: 0.197493] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.730972] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108981] [Yaw: 0.195450] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.376724] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101526] [Yaw: 0.225267] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.790344] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090710] [Yaw: 0.253874] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.303879] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079555] [Yaw: 0.278981] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.870834] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.072332] [Yaw: 0.302829] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.384811] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.062987] [Yaw: 0.332850] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.733093] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050186] [Yaw: 0.360041] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.051743] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043035] [Yaw: 0.388643] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.444199] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035794] [Yaw: 0.417609] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.847992] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.028712] [Yaw: 0.439354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.226669] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.016343] [Yaw: 0.465354] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.548416] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.007126] [Yaw: 0.493063] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.947220] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.008536] [Yaw: 0.487425] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.334839] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.009907] [Yaw: 0.481940] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.721802] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.011286] [Yaw: 0.476423] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.094208] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.013447] [Yaw: 0.471145] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.475983] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.015918] [Yaw: 0.466203] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.846497] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.018463] [Yaw: 0.461114] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.239731] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.020924] [Yaw: 0.456191] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.629974] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.023380] [Yaw: 0.451279] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.021942] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.025852] [Yaw: 0.446336] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.410858] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.027881] [Yaw: 0.441847] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.797028] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.029127] [Yaw: 0.438110] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.180161] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.030380] [Yaw: 0.434350] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.546265] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.031662] [Yaw: 0.430505] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.934570] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.032902] [Yaw: 0.426784] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.262314] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.034263] [Yaw: 0.422701] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.646713] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.035530] [Yaw: 0.418664] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.950287] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.037057] [Yaw: 0.412558] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.275330] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.038569] [Yaw: 0.406508] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.576660] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.040038] [Yaw: 0.400632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.900040] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.041527] [Yaw: 0.394676] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.194275] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.043048] [Yaw: 0.388593] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.477921] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.044570] [Yaw: 0.382503] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.799942] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.046020] [Yaw: 0.376706] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.119461] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.047456] [Yaw: 0.370961] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.423553] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.048906] [Yaw: 0.365159] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.686676] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.050489] [Yaw: 0.358828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.959274] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.052964] [Yaw: 0.352896] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.302719] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.055786] [Yaw: 0.347252] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.606567] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.058626] [Yaw: 0.341572] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.928802] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.061570] [Yaw: 0.335683] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.197128] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.064658] [Yaw: 0.329507] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.478806] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.067144] [Yaw: 0.323581] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.791473] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.068616] [Yaw: 0.317693] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.089066] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.070121] [Yaw: 0.311671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.404633] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.071594] [Yaw: 0.305782] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.728256] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.073053] [Yaw: 0.299945] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.027542] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.074492] [Yaw: 0.294189] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.403305] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.075738] [Yaw: 0.290433] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.790771] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.076973] [Yaw: 0.286728] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.170303] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.078220] [Yaw: 0.282987] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.496826] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.079576] [Yaw: 0.278919] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.839447] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.080940] [Yaw: 0.274828] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.140839] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.082459] [Yaw: 0.270376] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.422241] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.085258] [Yaw: 0.264779] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.717178] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.087995] [Yaw: 0.259305] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.023315] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.090724] [Yaw: 0.253847] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 186.386047] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.101313] [Yaw: 0.226121] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.970825] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.108505] [Yaw: 0.197352] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.485138] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.120329] [Yaw: 0.194081] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.962769] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.138586] [Yaw: 0.244540] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.568970] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.145950] [Yaw: 0.273144] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.057312] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.294876] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.814880] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.321734] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.733917] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.347046] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.387512] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.374090] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.063599] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.402678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.372678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.342678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.312678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.282678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.252678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.222678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.192678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.162678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.132678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.102678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.072678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.042678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: 0.012678] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.017322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.047322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.077322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.107322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.137322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.167322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.197322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.227322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.257322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.287322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.317322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.347322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.377322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.407322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.437322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.467322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.497322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.105882] [Roll: 0.152941] [Yaw: -0.527322] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.200745] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.148210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148210] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148211] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148156] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148045] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148519] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148607] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148286] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148156] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148303] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148560] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148866] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150202] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150054] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149764] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148849] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148504] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148272] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148033] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147710] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147075] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145850] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141436] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134325] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130117] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125672] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121398] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117705] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114841] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108399] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107168] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106224] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107609] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109827] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112392] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115211] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.605530] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.770386] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.932556] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.020325] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.062195] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.207153] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.332336] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.336365] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.502808] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.746765] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.969055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.063965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.154541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.489136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.758667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.043457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.397705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.669434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.223816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.644165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.255920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.053162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.725830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.656006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.781860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.062683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.548889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.182312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.002258] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.041748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.307129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.768433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.481934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.505920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.814514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.491272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.251648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.232239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.420105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.006592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.838135] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.973450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.172302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.512756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.069824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.406799] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.575500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.271790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.208313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.378235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.717957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.170288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.778503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.419189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.061279] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.502869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.670776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.094666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.213013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.174805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.459595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.010193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.742737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.623169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.437805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.222229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.904785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.235046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.382385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.969238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.871277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.832275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.070923] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.073914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.289246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.548889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.319458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.261475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.441711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.256897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.725525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.234680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.207886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.848999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.419678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.746887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.566528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.235779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.294617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.089172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.087830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.690125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.787781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.931824] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.533569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.493530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.737854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.931274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.666016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.543213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.309998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.522644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.922241] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.210022] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.296570] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.505432] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.428833] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.000366] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.156494] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.165039] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.345337] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.803711] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.898560] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.775513] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.106567] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.654175] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.497681] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.882690] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.063354] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.671143] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.686768] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.968750] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.037720] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.365967] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.450806] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.245239] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.718994] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.295654] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.606201] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.588867] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.460083] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.116699] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.560791] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.804565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.750244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.411865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.102173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.608887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.967773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.171509] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.100098] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.880859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.430176] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.755249] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.868164] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.767700] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.424805] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.873169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.015259] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.883301] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.449707] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.778931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.697266] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.469116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.989868] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.611816] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.870972] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.273926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.170410] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.275635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.293945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.545166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.703735] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.540527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.464844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.265747] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.754639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.412354] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.953491] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.151001] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.776489] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.286011] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.256470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.524536] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.768311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.139282] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.910645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.343506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.408142] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.693237] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.058533] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.268433] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.505859] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.513794] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.551453] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.732483] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.885925] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.505981] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.319031] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.602905] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.475281] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.294067] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.123840] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.736206] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.037109] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.785400] [T/O: true ][Cruise: false ] +[Elevator: -0.060000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.200928] [T/O: true ][Cruise: false ] +[Elevator: -0.050000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.983154] [T/O: true ][Cruise: false ] +[Elevator: -0.040000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.582703] [T/O: true ][Cruise: false ] +[Elevator: -0.030000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.845215] [T/O: true ][Cruise: false ] +[Elevator: -0.020000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.977783] [T/O: true ][Cruise: false ] +[Elevator: -0.010000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.763428] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.256653] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.065369] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.829956] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.754150] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.039063] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.537048] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.259949] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.412048] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.348267] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.573975] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.109436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.696045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.631714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.023804] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.737061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.129150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.736267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.005493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.003357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.772888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.105591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.893555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.295166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.361267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.041748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.310791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.170532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.902893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.905762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.388611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.251160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.607910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.477112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.683044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.260071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.285461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.693909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.898010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.903992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.112488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.821472] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.751709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.751343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.655884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.643250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.668823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.524719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.886353] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.443054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.822632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.518982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.423645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.479065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.728516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.625854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.885620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.213196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.472961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.888062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.310852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.885498] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.804260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.816895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.221497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.258545] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.968506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.780151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.564880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.787170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.686157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.597473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.558167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.267883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.398254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.403076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.799683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.916565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.755920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.493164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.299377] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.265015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.708374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.324158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.673096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.290161] [T/O: true ][Cruise: false ] +[Elevator: 0.120000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.841858] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.429932] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.973633] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.018433] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.828613] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.034180] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.751465] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.572021] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.767944] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.417969] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.923828] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.802979] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.929077] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.414917] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.829224] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.719727] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.234131] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.891968] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.395630] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.854126] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.200195] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.383423] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.496704] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.217163] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.930298] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.339722] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.689697] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.881348] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.543823] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.185303] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.565308] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.944214] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.916748] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.926758] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.462524] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.974976] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.439331] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.766724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.857788] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.699341] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.348999] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.985107] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.364868] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.361572] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.843750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.395996] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.639160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.624512] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.260132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.761597] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.040527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.374512] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.241333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.936768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.318359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.385864] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.283813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.889648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.204224] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.286011] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.083130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.646240] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.954590] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.015259] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.847412] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.443604] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.723145] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.836182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.698120] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.378784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.846680] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.936890] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.230713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.264648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.517212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.895386] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.169434] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.078735] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.302490] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.897583] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.182861] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.203003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.234619] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.896973] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.768555] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.584961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.972656] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.537109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.899780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.847900] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.679932] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.212769] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.901123] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.741577] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.360840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.147705] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.036865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.174927] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.566406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.087769] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.902222] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.316772] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.227051] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.300537] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.735229] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.536621] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.653748] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.614990] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.331055] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.711182] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.221863] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.040527] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.706360] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.483337] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.294678] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.737427] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.238525] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.177185] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.486267] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.775757] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.478455] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.710815] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.112854] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.296326] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.546082] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.465149] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.363220] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.853149] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.488892] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.210388] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.283142] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.444092] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.339050] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.541931] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.284729] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.928040] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.752472] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.347900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.583801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.537109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.014923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.987640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.854675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.154724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.564514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.604950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.876343] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.912415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.418091] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.378754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.048615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.886108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.841690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.845581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.346954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.207413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.576782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.358459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.952789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.886612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.187805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.893143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.908325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.497253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.898102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.888046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.382141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.335037] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.828873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.076874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.020554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.698410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.211487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.229156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.990814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.481949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.416718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.854614] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.088928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.681976] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.161377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.636505] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.701355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.598846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.304855] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.279938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.951691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.219543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.412964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.394684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.285004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.665588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.681427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.116180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.800903] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.102966] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.344666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.699127] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.486053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.492859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.948883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.216949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.961975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.941803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.893860] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.502258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.129456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.064575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.615540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.048462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.556824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.731079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.459229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.806580] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.375488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.184326] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.883179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.013123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.265259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.411438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.242004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.826477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.865173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.934265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.032837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.696655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.252502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.465881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.394043] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.666809] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.625732] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.965393] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.198303] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.223633] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.684265] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.026611] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.890320] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.245239] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.768433] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.342224] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.521179] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.177795] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.518066] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.359253] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.930420] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.895508] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.377563] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.853882] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.154053] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.725098] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.190186] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.154663] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.480957] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.810791] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.178223] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.350830] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.133179] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.635010] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.842407] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.548584] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.952026] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.270264] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.201660] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.838135] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.140503] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.175659] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.916870] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.354736] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.471802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.288574] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.726563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.931152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.636963] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.138062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.382935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.419189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.067139] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.277710] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.036255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.729492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.609863] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.354614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.911377] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.389893] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.384033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.002686] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.585938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.971802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.598755] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.226563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.196411] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.928345] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.418335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.506348] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.081299] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.592346] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.264404] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.601807] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.913818] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.709351] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.836365] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.745361] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.969116] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.997681] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.808411] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.337891] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.071045] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.564148] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.930237] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.018250] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.093323] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.743347] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.602295] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.462036] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.934082] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.874695] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.163513] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.612488] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.817566] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.937256] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.230530] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.140686] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.719360] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.285278] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.302246] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.215698] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.456299] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.366150] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.867920] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.836609] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.473999] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.936951] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.515411] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.756104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.408295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.175140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.025391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.591461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.325165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.067200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.492462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.306915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.830017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.196381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.008026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.573959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.496262] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.482803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.484573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.178040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.932907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.946533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.619476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.676758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 13.406071] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.531697] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.637206] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.725735] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.798398] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.857290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.909015] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.950197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 13.986641] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.014859] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.039434] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.058767] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.074084] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.086791] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.097349] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105783] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119627] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.129836] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133940] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.137769] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140166] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143356] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144044] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144521] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145054] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145473] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145168] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143877] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141747] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139036] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127598] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.123372] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119629] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116577] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114099] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111717] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109844] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108673] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107480] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106529] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105968] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.105800] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106154] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107184] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108841] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110927] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113174] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117631] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120365] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122539] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127649] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130328] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133011] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135924] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138832] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141278] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142930] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146241] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146796] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147155] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147648] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148297] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148364] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148281] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148323] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148497] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148692] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149027] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149760] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150705] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151889] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152737] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153108] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154148] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155088] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157784] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158550] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159465] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160645] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163111] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163932] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164392] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164906] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165449] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166303] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167495] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168179] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168372] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168302] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168052] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168051] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168425] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169393] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169865] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170440] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170959] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171612] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172797] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173582] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174175] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175062] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175923] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176462] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176472] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176274] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176320] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176726] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177218] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177793] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178145] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178653] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179385] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182854] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184573] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187665] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188332] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187886] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186913] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185461] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183481] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182226] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181753] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182473] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184690] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186941] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189045] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188632] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188323] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188928] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190883] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194020] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197795] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201634] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204657] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207296] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.020000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208903] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209711] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215373] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.225549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228561] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.235443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.239405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.249310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.255583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.262044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.269218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.277982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.300587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.317165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.339289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.364699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.400819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.439605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.487885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.543823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.614600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.693488] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.785847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.897782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.024286] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.178449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.356762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.561032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.775539] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.052971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.323387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.614136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.945839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.301624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.712975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.137787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.634781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.145695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.717882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.302855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.937925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.637272] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.369328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.628754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.635624] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.710407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.920460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.144779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.344305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.743053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.135708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.516140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.135101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.886066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.514248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.126823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.771187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.094257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.342773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.557602] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.986179] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.481125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.911636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.318989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.875694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.397747] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.000946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.750061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 71.974915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 74.903572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.529846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.100235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 82.717140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.381721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.427895] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.322365] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.515366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.638344] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.623657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.551277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.435593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.554649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.741508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.746590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.790382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.979195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.310890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.417389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.884293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.044128] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.537323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.802841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.336044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 148.566666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.116730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 155.367722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.724594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.086395] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.356186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.802368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.067566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.729248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.890671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.293518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.789871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.261810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.431366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.787994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.421341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.749832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.145172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.586914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.006409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.370483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.884964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.263901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.547699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.357254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.720612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.894379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.721130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.983261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.415543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.586243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.977127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.247986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.291260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.490143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.600769] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.589752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.566956] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.551361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.654724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.398041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.194489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.969788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.696838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.458527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.137482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.841461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.318176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.862793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.285980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.903259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.296021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.667908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 314.927246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.326660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.449097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.998474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.475037] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.030060] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.169342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.631714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.006134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.230438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.237976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.181549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.177246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.986572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.696136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.445343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.243317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.013031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.816345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.361755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.816193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.082550] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.319580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.616516] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.834259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.020630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.376495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.699402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.678497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.718445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.631470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.549255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.422150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.245361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.024261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.795044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.487030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.130493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.789734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.451996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.975739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.532745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.045868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.483612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.913605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.272034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.637360] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.969513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.317505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.664001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.941467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.163483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.398071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.595978] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.769501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.926819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.057434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.172119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.273590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.360352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.443420] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.515564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.583466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.633636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.680908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.723145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.765381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.805145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.849243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.890228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.938202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.989410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.054108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.123871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.190125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.266022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.352264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.450409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.550354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.665436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.805634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.950745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.158691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.379578] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.627106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.915680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.210114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.524658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.919312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.435944] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.948425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.479340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.091949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.723938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.414063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.166260] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.944489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.864502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.792358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.721771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.628418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.624359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.696228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.695496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.776581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.875275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.871704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.997620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.169006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.446625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.603851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.845551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.197693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.507019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.031342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.673950] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.299927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.888153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.453705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.390259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.331207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.191711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.018127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.896637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.822235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.793243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.845581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.812958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.890869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.959991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.262665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.295837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.651154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.938477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 449.269867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.860077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.523224] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.267487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.127502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.170197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.373108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.491760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.691620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.881073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.128632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.550629] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.486267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.372101] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 491.114502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.068878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.101685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.236389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.178192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.931580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.630676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.738251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.766785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.928772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.082520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.007813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.971558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.984131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.754700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.844910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.778687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.735901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.856445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.927979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.987244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.856995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 556.791992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.056458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.356873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.508484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.359558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.331177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.219238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.111511] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.181763] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.228333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.251770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.941589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.982239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.975586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.864075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.019226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.762634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.603333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 610.491455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.112915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.758118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.393127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.222839] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.969238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.454102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.031555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.579407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.026245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.631104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.184937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.590149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.007324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.283203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.630371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.033875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.284546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.721313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.043396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.232300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.413269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.488098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.501404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.460510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.374207] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.299622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.078186] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.006165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.715942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.397156] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.126831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.861389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.468567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.981689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.600708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.077942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.583679] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.072754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.395996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.934509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.336853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.671143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.981201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.267212] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.633850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.891174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.085510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.294861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.513428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.587585] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.634705] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.612183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.645569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.618713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.585693] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.534424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.402100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.320618] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.146240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.005432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.030029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.780884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.559082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.333252] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.116882] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.819153] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.457336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.145264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.823914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.524902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.120605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.769653] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.354858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.927002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.455322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.966614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.481262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.994690] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.495483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.001831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.487000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.956238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.385620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.856995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.271118] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.714783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.129028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.551941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.948975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.355164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.148865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.581238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.998657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.427612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.863220] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.261414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.666748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.086121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.508789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.935852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.380676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.866699] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.353638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.834351] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.333069] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.820313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.358093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.947998] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.538452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.125793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.710938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.286255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.960754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.642090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.303467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.040405] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.714966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.442017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.191162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.846924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.647583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.513916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.386169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.374939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.302490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.219421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.223450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.251709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.322388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.431274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.439392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.580688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.706238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.922180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.173523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.379700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.596375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.887756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.311157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.686523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.992126] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.362732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.830566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.313416] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.826294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.359741] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.923523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.455811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.038025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.541809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.086182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.756592] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.474915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.138306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.816650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.742310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.611572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.400085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.226746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.116211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.931458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.967773] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.049072] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.986694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.987366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.032593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.085205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.446167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.704102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.916565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.188477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.275757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.649719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.133911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.472412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.721497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.181091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.504700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.803223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.019836] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.322510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.581482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.941284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.203674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.639709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.889465] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.288269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.765869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.107849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.370728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.784424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.041870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.482056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.924622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.377502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.795105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.106750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.550171] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.005066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.361633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.973267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.522644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.062744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.718262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.171204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.714050] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.299133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.656616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.259644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.710571] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.219971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.801392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.312622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.698853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.039429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.402710] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.753967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.873474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.863586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.096680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.396484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.787354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.138733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.533875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.913879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.356628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.594971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.843201] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.125732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.549500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.821899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.853271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.053589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.361694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.547302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.627502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.782837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.996948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.056519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.061157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.302246] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.332581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.169861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.033325] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.050537] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.869934] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.729980] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.556824] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.382751] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.184265] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.033447] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.553040] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.158447] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.760681] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.188538] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.839172] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.462585] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.941284] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.486450] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.949463] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.352905] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.781982] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.287598] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.712646] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.972168] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.226074] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.508179] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.684082] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.843506] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.835327] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.806641] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.722778] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.625610] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.426392] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.162109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.858887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.527588] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.081543] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.503662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.790161] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.991943] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.123169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.158813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.103394] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.963501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.729126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.383911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.964966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.482788] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.916138] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.227661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.505981] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.685425] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.760498] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.684692] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.468262] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.238037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.861328] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.351318] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.822021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.157959] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.437866] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.604492] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.784302] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.640747] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.600952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.447083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.272217] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.984558] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.794312] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.315857] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.916748] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.498657] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.200623] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.562988] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.868591] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.011169] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.075867] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.997620] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.868896] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.465637] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.813049] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.247009] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.997620] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.813477] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.408813] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.924438] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.429565] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.831543] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.373779] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.570740] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.954407] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.362427] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.758545] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.685547] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.508240] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.309631] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.412659] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.968140] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.778259] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.348328] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.182434] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.257385] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.295227] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.898315] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.822144] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.110413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.330994] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.845154] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.724670] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.738708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.945557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.505005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.313477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.371765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.673828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.251465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.043823] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.248718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.705811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.220581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.994629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.841064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.070007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.572388] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.359619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.350159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.701233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.048340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.605408] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.129456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.953186] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.076355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.270752] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.763428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.187988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.006714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.312683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.506775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.731567] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.503601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.464355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.816040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.951477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.026123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.432251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.649963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.803406] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.869629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.309814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.970703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.552734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.074219] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.065430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.795532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.216309] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.132568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1099.987549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.518555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.785400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.992676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.946167] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.124634] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.458374] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.739380] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.508667] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.029053] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.823364] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.016968] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.653931] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.063721] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.264648] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.360474] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.903687] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.412598] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.253540] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.278076] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.082397] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.780151] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.877930] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.384888] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.045776] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.296997] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.231445] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.949463] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.582642] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.378662] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.287231] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.634766] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.851196] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.748535] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.676636] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.419922] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.106445] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.768555] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.644775] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.547241] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.981079] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.254639] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.414917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.403198] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.195190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.763794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.317749] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.791748] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.944092] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.078369] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.136108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.011841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.015015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.961670] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.684448] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.209229] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.541016] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.685791] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.827026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.808472] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.711182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.526611] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.347778] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.973511] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.505615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.828003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.051636] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.154541] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.118896] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.918335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.570190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.060059] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.403564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.621582] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.664917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.549072] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.306152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.942383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.461304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.788452] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.022949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.174316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.093872] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.873413] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.485474] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.891479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.187134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.492554] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.614136] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.581909] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.467041] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.260864] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.656250] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.786255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.035767] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.171143] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.102173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.829834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.404297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.930664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.389404] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.613403] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.620850] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.886108] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.698975] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.395386] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.911865] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.382202] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.512207] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.266479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.734009] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.758179] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.038940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.819946] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.511475] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.696167] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.412842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.588501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1281.618774] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.495605] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.400635] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.334717] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.113525] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.385254] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.394409] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.464355] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.422852] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1199.677002] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.512695] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.983398] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.449341] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.297363] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.095215] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.720947] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.567993] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.756592] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.930176] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.903320] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.245728] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.028687] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.738403] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.743774] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.180908] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.978638] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.833191] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.046936] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.998718] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.384521] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.540039] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.108276] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.355286] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.128662] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.254578] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.246033] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.324280] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.308777] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.948669] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.544678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.716736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.577209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.099182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.612793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.594360] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.811584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.721252] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.798279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.479126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.922913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.812683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.230164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.040100] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.669067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.038696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.966187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.218689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.762024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.817566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.609741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.967285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.892822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.221008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.885925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.086975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.553040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.430054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.473145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.391235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.441467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.821899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.516052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.106201] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.289734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.089050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.458557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.211853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.170105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.869263] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.357056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.999268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.746399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.907410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.773376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.060303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.742065] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.800354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.699463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.687561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.301208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.977417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.724792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.582458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.911377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.792725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.179810] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.852539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.869263] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.453979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.544434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.545532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.051880] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.032593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.099609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.170898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.529419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.536499] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.060913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.483276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.336548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.527588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.270386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.909668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.286865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.166626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.430420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.228027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.503052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.056763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.568848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.019409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.780884] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.919800] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.435791] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.935547] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.390137] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.577759] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.092407] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.757080] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.981567] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.366455] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.651489] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.154297] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.227417] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.411377] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.971191] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.773682] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.685059] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.370850] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.133545] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.155884] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.610107] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.826904] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.836914] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.488281] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.490356] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.335571] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.109985] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.544922] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.179565] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.234863] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.644165] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1506.828979] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1511.891724] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.527344] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.577271] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.233521] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.761353] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1538.367188] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.793091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.882690] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.848877] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.654297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.702637] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.380859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.961792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.320190] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.666382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.926147] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.963745] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.673950] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.349121] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1588.788330] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.502930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.959106] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.251465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.481689] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.815186] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.346802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.394897] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.207031] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.795410] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.192993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1611.426025] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.484741] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.419189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.179443] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.755249] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.156128] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.369141] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.381226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.191650] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.795410] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.200317] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.257446] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.040161] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.627808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.845703] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.864380] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1604.530884] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.044189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.472290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.657593] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.611816] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.560669] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1587.364502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1584.060181] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.484741] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.604614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.652344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.591309] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.828613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.970093] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1550.090454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.758789] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.385376] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.652466] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.612427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.645020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1516.116577] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1509.524902] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1502.839111] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.689209] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1487.904907] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.979248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.129028] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.038818] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.626953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.970215] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.217773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.438843] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.143433] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.721191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.330200] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.168213] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.658691] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.968262] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.306885] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.101074] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.118164] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.037231] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.832397] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.682007] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.478394] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.914673] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.633179] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.433716] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.268433] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.489990] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.876099] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.417236] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.906616] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.897339] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.390869] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.772095] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.107056] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.062622] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.697876] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.549072] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.148926] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.138794] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.078369] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.697876] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.024475] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.722168] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.081055] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.298523] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.465576] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.915894] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.380066] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.366333] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.809570] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.610291] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.995056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.321655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.750549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.905762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.661865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.958130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.038025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.720642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.612000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.530334] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.493774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.224854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.882629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.315430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.608398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.085571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.842529] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.773376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.681335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.506470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.833008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.605652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.462158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.290894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.680176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.876526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.142273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.204590] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.113770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.908325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.437317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.905273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.063232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.109741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.222351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.388550] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.087402] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.018127] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.386108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.462036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 587.660583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.554504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.087341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.852356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.719604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.338379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.953796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.654541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.579956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.642761] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.974792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.559937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.026184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.147827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.108521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.488953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.208801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.221069] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.683289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.687439] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.671936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.477722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.309082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.543945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.611267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.686707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.091919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.662354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.575378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.612610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.746094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.405884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.882568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.553467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.615662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.981323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.712646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.085510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.533264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.088989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.253296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.974731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.231079] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.483154] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.543701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.440430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.313354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.662964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.168091] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.822754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.894897] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.711914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.354248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.187134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.620117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.788452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.990356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.153320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.690552] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.754028] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.751587] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.956299] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.358521] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.326050] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.987183] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.677612] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.572266] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.963379] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.021362] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.752563] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.039063] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.383789] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.483643] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.472046] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.188110] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.861816] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.342041] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.615967] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.696777] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.677124] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.573853] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.449341] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.985229] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.398560] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.516846] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.562866] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.301636] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.826904] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.503906] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.052124] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.134033] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.098633] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.919312] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.621826] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.970581] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.076050] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1475.003296] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.867676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.513184] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1482.897339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.199829] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1487.431030] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.391602] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.017578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1492.376221] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1493.681152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.792969] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.825195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.572144] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.120117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.450317] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.584229] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.542603] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.322021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.927856] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.364990] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.588135] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.622070] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1493.401367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1492.020020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.440552] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.670776] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1486.591187] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.326660] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.779785] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.056396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.163086] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.855469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.480469] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.222046] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.423828] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.180542] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.787842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.186279] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.318115] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.393433] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.041992] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.530762] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.039917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.012695] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.172241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.059082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.751831] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.110596] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.327759] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.292725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.812500] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.296021] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.619385] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.679199] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.869873] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.160034] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.892822] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.804321] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.884766] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.695313] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.106812] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.227417] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.449951] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.422852] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.074097] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1230.883057] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.208862] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.180054] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.940796] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.354004] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.843750] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.562500] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.879517] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.307861] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.019043] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.564575] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.787964] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.522461] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.336792] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.749390] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.162354] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.684021] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.873230] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.331543] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.719604] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.029419] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.139648] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.296265] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.387085] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.494263] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.543335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.832520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.637695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.619080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.533325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.847839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.572144] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.669006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.792175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.832275] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.684998] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.683228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.110107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.316650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.914551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.952026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.871460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.854248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.912292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.862549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.712524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.425964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.950775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.801025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.641418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.446594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.764862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.267120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.991821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.306000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 420.315369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.524475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.993622] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.633636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.272064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.152222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.838989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.802124] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.658203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.486145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.122650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.795685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.376801] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.482269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.296600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.379089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.099915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.472961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.824890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.483398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.084961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 461.718018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.866608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.166107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.610046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.860474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.287537] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.430420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.890442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.782715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.133606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.049438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.780640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.733337] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.170166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.778503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.850891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.828491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.541443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 691.987549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.700439] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.769592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.119202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.781921] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.041687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.083191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.368713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.360229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.230957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.234253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.161926] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.465393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.422241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.116089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.537842] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.078491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.536987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.065125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.557373] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.822449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.377686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.532349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.437256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.823792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.740967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.967102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.379272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.629883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.610718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.835693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.354980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.498535] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.744629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.048340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.145264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.564087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.872192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.689209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.781494] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.014404] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.540405] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.453125] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.071777] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.272705] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.348267] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.586670] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.385010] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.568726] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.746216] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.424438] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.722412] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.759521] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.873169] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.447388] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.510742] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.078857] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.164185] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.307983] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.484985] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.610718] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.731201] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.578735] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.246826] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.991211] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.479858] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.049316] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.905273] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.361450] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.771973] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.908447] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.153076] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.597168] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.111084] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.236816] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.136230] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.547729] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.619385] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.249756] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.477173] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.382935] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.911621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.136353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.942627] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.483643] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.492676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.970947] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.779663] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.876465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.823608] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.002075] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.082153] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.988159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.817383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.767212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.289673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.542236] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.797241] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.440918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.667236] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.835327] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.442139] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.357666] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.597534] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.161865] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.897217] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.296753] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.374390] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.362061] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.541626] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.924072] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.480469] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.971436] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.367188] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.406616] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.543823] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.561523] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.004395] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.257690] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.680298] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.225342] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.175171] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.173218] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.716797] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.905640] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.339294] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.196899] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.995056] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.326477] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.582520] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.950989] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.671936] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.755676] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.832825] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.680176] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.583191] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.755432] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.299866] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.144348] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.020142] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.744751] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.329712] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.764038] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.642151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.447144] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.705750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.683228] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.683105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.270264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.140808] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.945984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.914551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.242493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.500061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.809753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.732300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.942413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.606049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.630310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.414917] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.108002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.581390] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.858002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.948303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.888000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.929901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.691162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.775208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.990845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.741058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.547119] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 262.396729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.665527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.316895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.385010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.743103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.384323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.289978] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.461075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.665283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.940521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.087692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 258.060211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.837402] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.111938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.098022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.711548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.953583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.502380] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.920166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.060394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.002594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.977936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.083893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.051178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.878235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.861725] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.808533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.270203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.607483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.870850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 439.048889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.952728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.650146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.430511] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.368378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.294678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.935852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.435913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.135254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.469055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.017822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.373474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.290466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.816040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.239563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.910950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.930359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.234009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.121033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.630737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.145081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.729675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.512695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.300903] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.419983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.182861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.924744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.852783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.036438] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.783081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.208069] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.949768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.234680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.297729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.954102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.817749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.150513] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.921082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.815125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.114075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.863403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.549316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.222961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.940613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.609619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.160583] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.919678] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.943481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.623047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.681763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.456421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.926270] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.331055] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.156128] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.913330] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.116943] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.549683] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.551758] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.576904] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.127808] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.341919] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.829712] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.069580] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.964722] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.125732] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.228882] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.959229] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.199341] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.129517] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.554932] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.326294] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.172607] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.501587] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.344971] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.971558] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.464600] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.494141] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.585938] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.651001] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.948975] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.871582] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1241.324097] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.521606] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.651978] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.411133] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.837402] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.919312] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.727417] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.228882] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.416992] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.331177] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.974854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.354126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.340698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.141113] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.587280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.769897] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.668823] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.396606] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.877441] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.947144] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.813843] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.890381] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.003906] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.836914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.407471] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.825806] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.028931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.565796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.312500] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.787598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.798340] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.434082] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.911255] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.842651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.852905] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.159302] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.133179] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.542847] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.769531] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.788208] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.401489] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.204834] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.025269] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.196533] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.236694] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.348633] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.004517] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.410522] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.091736] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.272827] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.760559] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.661194] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.785828] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.337463] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.755493] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.497131] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.769531] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.555725] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.147827] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.301392] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.670410] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.620300] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.822876] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.798767] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.707214] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.523804] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.128540] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.626221] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.787231] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.913757] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.688110] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.146912] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.651978] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.962830] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.610596] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.480103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.281494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.564026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.499115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.161682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 476.281372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.607605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.639435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.620087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.733551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.410980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.425446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.727356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.328033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.596436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.417603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.855133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.440887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.158279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.171448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.228851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.263229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.055862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.252716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.516541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 170.183075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.080093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.265259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.957779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.682816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.698502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.987656] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.212418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 166.200836] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.370300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.767151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.253494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.050949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.632477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.156387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.576187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.924850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.736267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.692413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.229553] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.993835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.353668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.931335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.136627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.436432] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.231750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.954132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.676941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.090729] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.017853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.789093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.335449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.987122] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.789368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.716125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.425568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.577881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.026886] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.245544] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.377014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.576660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.610840] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.833740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.297302] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.385498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.398132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.673584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.795532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.119141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.743347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.717102] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.272522] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.949463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.280151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.455322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.796021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.544983] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.417664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.030151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.375854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.487915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.717163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.069092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.837830] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.695190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.245911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.236938] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.166931] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.841736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.190552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.114868] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.286560] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.225769] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.241577] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.080750] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.877319] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.412903] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.797852] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.059631] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.291748] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.276367] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.120850] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.987671] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.659912] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.886108] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.918335] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.795044] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1070.567627] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.966919] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.152954] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.319092] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.177979] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.701660] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.051025] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.042725] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.311768] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.744751] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.240723] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.697632] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.004883] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.379761] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.586182] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.811646] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.026855] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.823364] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.292847] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.531494] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.425903] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.017944] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.266235] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.219482] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.872681] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.188110] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.300903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.030273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.431763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.575073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.320923] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.824463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.100464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.131836] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.957397] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.223511] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.195313] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.752319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.011230] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.157349] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.883057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.178711] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.106689] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.715332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.171387] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.746094] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.721924] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.328369] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.813965] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.288818] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.856689] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.205566] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.452148] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.109314] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.469421] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.109619] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.423950] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.101318] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.156006] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.736694] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.721191] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.572449] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.383301] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.278015] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.826538] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.006042] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.108582] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.244263] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.197510] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.127258] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.121765] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.833557] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.279602] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.442200] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.093933] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.932373] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.084778] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.383301] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.551086] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.418213] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.495850] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.980286] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.178406] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.213074] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.181458] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 571.382935] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.159668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.068176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.379089] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.425476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 484.189789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.057007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.934967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.453003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.939392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.018829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.081726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.748260] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.929443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.361267] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.341797] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 287.598419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.004974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.858475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 211.415665] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.338470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.600998] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.553482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.389450] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 144.352158] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.621750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.028046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.483612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.291862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.218132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.385002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.752151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.198059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.621475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.246117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.607056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 127.661568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.016479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.805084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.003922] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.188202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.601013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.419556] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.670166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.217010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.945023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.459061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.396484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.799179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.103180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.418533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.902969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.576691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.004730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.606018] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.170166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 309.295135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.939972] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.995758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.984039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.460907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.471008] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.853455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.052612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.388428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.278839] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.655426] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.247192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.189728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.713196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.936615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.362061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.391907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.531616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.405640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.581726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.871399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.819702] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.561096] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.122375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.714050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.142151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.886230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.971802] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.088989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.641724] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.988831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.701660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.446106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.169861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.813477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.657959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.760071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.554077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.444824] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.172485] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.374451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.261047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.114014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.563110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.823608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.907532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.567139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.358398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.747803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.194153] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.731018] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.270752] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.881226] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.935852] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.886536] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.425293] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.978943] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.216675] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.201111] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.070435] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.681763] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.964233] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.852234] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.296265] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.664673] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.348511] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.921021] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.154236] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.398926] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.378418] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.631226] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.645996] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.587158] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.425537] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.250244] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.837036] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.306641] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.402710] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: -0.063349] [Yaw: -0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.171997] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: -0.063349] [Yaw: -0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.820801] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: -0.063349] [Yaw: -0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.072388] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: -0.063349] [Yaw: -0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.301392] [T/O: false ][Cruise: true ] +[Elevator: -0.009941] [Roll: -0.709606] [Yaw: -0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.464966] [T/O: false ][Cruise: true ] +[Elevator: 0.015139] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.364014] [T/O: false ][Cruise: true ] +[Elevator: 0.039249] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.047852] [T/O: false ][Cruise: true ] +[Elevator: 0.045896] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.662720] [T/O: false ][Cruise: true ] +[Elevator: 0.052742] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.027466] [T/O: false ][Cruise: true ] +[Elevator: 0.059770] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.921997] [T/O: false ][Cruise: true ] +[Elevator: 0.066969] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.699829] [T/O: false ][Cruise: true ] +[Elevator: 0.066969] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.136108] [T/O: false ][Cruise: true ] +[Elevator: 0.074325] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.414063] [T/O: false ][Cruise: true ] +[Elevator: 0.081831] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.513184] [T/O: false ][Cruise: true ] +[Elevator: 0.081831] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.358398] [T/O: false ][Cruise: true ] +[Elevator: 0.089477] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.987549] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.373413] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.564941] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.531494] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.279297] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.820313] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.144531] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.239014] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.090698] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.736572] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.128418] [T/O: false ][Cruise: true ] +[Elevator: 0.097256] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.156738] [T/O: false ][Cruise: true ] +[Elevator: 0.129582] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.875000] [T/O: false ][Cruise: true ] +[Elevator: 0.181207] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.131592] [T/O: false ][Cruise: true ] +[Elevator: 0.264408] [Roll: -1.000000] [Yaw: -0.200000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.110474] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: -0.975063] [Yaw: -0.195013] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.898193] [T/O: false ][Cruise: true ] +[Elevator: 0.363454] [Roll: -0.950253] [Yaw: -0.190051] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.471680] [T/O: false ][Cruise: true ] +[Elevator: 0.457554] [Roll: -0.804172] [Yaw: -0.160834] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.828491] [T/O: false ][Cruise: true ] +[Elevator: 0.489847] [Roll: -0.709606] [Yaw: -0.141921] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.489847] [Roll: -0.663232] [Yaw: -0.132646] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.632813] [T/O: false ][Cruise: true ] +[Elevator: 0.500708] [Roll: -0.606169] [Yaw: -0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.370117] [T/O: false ][Cruise: true ] +[Elevator: 0.511617] [Roll: -0.606169] [Yaw: -0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.645752] [T/O: false ][Cruise: true ] +[Elevator: 0.511617] [Roll: -0.606169] [Yaw: -0.121234] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.343994] [T/O: false ][Cruise: true ] +[Elevator: 0.522572] [Roll: -0.617499] [Yaw: -0.123500] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.737061] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.628871] [Yaw: -0.125774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.270020] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.628871] [Yaw: -0.125774] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.432373] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.640284] [Yaw: -0.128057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.154053] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.640284] [Yaw: -0.128057] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.813965] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.249268] [T/O: false ][Cruise: true ] +[Elevator: 0.533574] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.568604] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.695679] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.242554] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.544373] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.897278] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.328308] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.563782] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.974548] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.464722] [T/O: false ][Cruise: true ] +[Elevator: 0.544620] [Roll: -0.651738] [Yaw: -0.130348] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.766541] [T/O: false ][Cruise: true ] +[Elevator: 0.373692] [Roll: -0.583635] [Yaw: -0.116727] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.647949] [T/O: false ][Cruise: true ] +[Elevator: 0.129582] [Roll: -0.358357] [Yaw: -0.071671] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.643250] [T/O: false ][Cruise: true ] +[Elevator: 0.059770] [Roll: -0.240679] [Yaw: -0.048136] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.403931] [T/O: false ][Cruise: true ] +[Elevator: -0.020726] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.697449] [T/O: false ][Cruise: true ] +[Elevator: -0.032820] [Roll: 0.070628] [Yaw: 0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.883728] [T/O: false ][Cruise: true ] +[Elevator: 0.026635] [Roll: 0.101193] [Yaw: 0.020239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.535461] [T/O: false ][Cruise: true ] +[Elevator: 0.293453] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.360413] [T/O: false ][Cruise: true ] +[Elevator: 0.313146] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.448792] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.932190] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.636230] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.038818] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.866577] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.134705] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.796570] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.369568] [T/O: false ][Cruise: true ] +[Elevator: 0.323086] [Roll: 0.117244] [Yaw: 0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.261108] [T/O: false ][Cruise: true ] +[Elevator: 0.313146] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.260803] [T/O: false ][Cruise: true ] +[Elevator: 0.303268] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.634399] [T/O: false ][Cruise: true ] +[Elevator: 0.293453] [Roll: -0.117244] [Yaw: -0.023449] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.065979] [T/O: false ][Cruise: true ] +[Elevator: 0.293453] [Roll: -0.142159] [Yaw: -0.028432] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.326172] [T/O: false ][Cruise: true ] +[Elevator: 0.274022] [Roll: -0.167983] [Yaw: -0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.689697] [T/O: false ][Cruise: true ] +[Elevator: -0.026635] [Roll: -0.222025] [Yaw: -0.044405] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.250732] [T/O: false ][Cruise: true ] +[Elevator: -0.208236] [Roll: -0.185659] [Yaw: -0.037132] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.331848] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.150671] [Yaw: -0.030134] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.814331] [T/O: false ][Cruise: true ] +[Elevator: -0.333089] [Roll: -0.101193] [Yaw: -0.020239] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.733459] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.040222] [T/O: false ][Cruise: true ] +[Elevator: -0.208236] [Roll: 0.167983] [Yaw: 0.033597] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.677490] [T/O: false ][Cruise: true ] +[Elevator: -0.172368] [Roll: 0.159279] [Yaw: 0.031856] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.129582] [Roll: 0.133748] [Yaw: 0.026750] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.942261] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: 0.109159] [Yaw: 0.021832] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.477905] [T/O: false ][Cruise: true ] +[Elevator: -0.105161] [Roll: 0.085637] [Yaw: 0.017127] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.226135] [T/O: false ][Cruise: true ] +[Elevator: -0.113187] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.167480] [T/O: false ][Cruise: true ] +[Elevator: -0.163619] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.299011] [T/O: false ][Cruise: true ] +[Elevator: -0.181207] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.589783] [T/O: false ][Cruise: true ] +[Elevator: -0.199143] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.037842] [T/O: false ][Cruise: true ] +[Elevator: -0.199143] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.591553] [T/O: false ][Cruise: true ] +[Elevator: -0.235987] [Roll: 0.017889] [Yaw: 0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.291016] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.081482] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.025208] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.003162] [Yaw: 0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.024780] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.192566] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.354004] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.591064] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.864868] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.277405] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.662292] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: -0.070628] [Yaw: -0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.177673] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.070628] [Yaw: -0.014126] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.620483] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.063349] [Yaw: -0.012670] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.110046] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.049295] [Yaw: -0.009859] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.702698] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.042546] [Yaw: -0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.215576] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: -0.036006] [Yaw: -0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.776062] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: -0.029695] [Yaw: -0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.348083] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.924316] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.513916] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.102722] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.565674] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.131531] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.668518] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.181519] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.689087] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.164856] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.603577] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.079590] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.003162] [Yaw: 0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.452820] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.912048] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.007521] [Yaw: 0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.263000] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.617371] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.993591] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.199890] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.484924] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.732178] [T/O: false ][Cruise: true ] +[Elevator: -0.273704] [Roll: 0.002485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.988098] [T/O: false ][Cruise: true ] +[Elevator: -0.263704] [Roll: -0.007515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.171814] [T/O: false ][Cruise: true ] +[Elevator: -0.253704] [Roll: -0.017515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.353027] [T/O: false ][Cruise: true ] +[Elevator: -0.243704] [Roll: -0.027515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.491943] [T/O: false ][Cruise: true ] +[Elevator: -0.233704] [Roll: -0.037515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.686707] [T/O: false ][Cruise: true ] +[Elevator: -0.223704] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.818481] [T/O: false ][Cruise: true ] +[Elevator: -0.213704] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.918457] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.067515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.063843] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.057515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.183167] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.047515] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.269104] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.386230] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.580200] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.742065] [T/O: false ][Cruise: true ] +[Elevator: -0.323086] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.876648] [T/O: false ][Cruise: true ] +[Elevator: -0.343152] [Roll: 0.042546] [Yaw: 0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.018555] [T/O: false ][Cruise: true ] +[Elevator: -0.343152] [Roll: 0.042546] [Yaw: 0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.154602] [T/O: false ][Cruise: true ] +[Elevator: -0.333089] [Roll: 0.042546] [Yaw: 0.008509] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.341980] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.551941] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.702698] [T/O: false ][Cruise: true ] +[Elevator: -0.264408] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.800903] [T/O: false ][Cruise: true ] +[Elevator: -0.264408] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.940186] [T/O: false ][Cruise: true ] +[Elevator: -0.264408] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.051514] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.186890] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.287048] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.036006] [Yaw: 0.007201] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.372009] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.472473] [T/O: false ][Cruise: true ] +[Elevator: -0.274022] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.535339] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.029695] [Yaw: 0.005939] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.604858] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: 0.023644] [Yaw: 0.004729] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.685242] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.017889] [Yaw: 0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.745300] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.012485] [Yaw: 0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.774963] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: 0.003162] [Yaw: 0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.797485] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.812866] [T/O: false ][Cruise: true ] +[Elevator: -0.313146] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.861511] [T/O: false ][Cruise: true ] +[Elevator: -0.313146] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.849365] [T/O: false ][Cruise: true ] +[Elevator: -0.313146] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.825317] [T/O: false ][Cruise: true ] +[Elevator: -0.313146] [Roll: -0.017889] [Yaw: -0.003578] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.831543] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: -0.012485] [Yaw: -0.002497] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.841003] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: -0.007521] [Yaw: -0.001504] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.801636] [T/O: false ][Cruise: true ] +[Elevator: -0.303268] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.699341] [T/O: false ][Cruise: true ] +[Elevator: -0.293453] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.629089] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.512390] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.338257] [T/O: false ][Cruise: true ] +[Elevator: -0.283704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.184509] [T/O: false ][Cruise: true ] +[Elevator: -0.273704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.018677] [T/O: false ][Cruise: true ] +[Elevator: -0.263704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.855652] [T/O: false ][Cruise: true ] +[Elevator: -0.253704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.646301] [T/O: false ][Cruise: true ] +[Elevator: -0.243704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.460205] [T/O: false ][Cruise: true ] +[Elevator: -0.233704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.231812] [T/O: false ][Cruise: true ] +[Elevator: -0.223704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.040771] [T/O: false ][Cruise: true ] +[Elevator: -0.213704] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.779846] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.538452] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.263733] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.007446] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.761719] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.512939] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.237366] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.055481] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.854309] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.719482] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.661133] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.643250] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.660889] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.731628] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.799500] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.021667] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.290039] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.637634] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.978943] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.559204] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.165833] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.899963] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.793518] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.769653] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.836914] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.027832] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.424988] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.921448] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.575256] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.389954] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.226013] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.397766] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.645081] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.053833] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.605408] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.250671] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.205261] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.274475] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.561218] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.814636] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.453918] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.102051] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.996826] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.940918] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.172913] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.571289] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.145508] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.791931] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.005615] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.427856] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.256836] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.192261] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.679688] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.792480] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.148315] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.265747] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.241211] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.547974] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.236450] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.772095] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.310669] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.956421] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.288452] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.620728] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.774292] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.952271] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1143.129028] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1150.388428] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.754272] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.173950] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.572510] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.039307] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.477051] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.947876] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.480225] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.840820] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.908569] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.212524] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.020996] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.031372] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.695313] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.580200] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.376465] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.775879] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.309448] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.917114] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.485596] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.858276] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.481201] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.500977] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.863159] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.778809] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.251709] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.209473] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.510498] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.598633] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.542725] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.281982] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.191284] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.802124] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.429688] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.115356] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1380.820435] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.316895] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.247681] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.279053] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.581543] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.774170] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.686768] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.752075] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.527588] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.486328] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.370239] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: -0.143162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.125488] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.560303] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.361694] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1455.998047] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.519775] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.778687] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1468.760376] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.754883] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.503906] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.143162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.580933] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1484.369995] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.005127] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.430298] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.742310] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.026489] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1501.387817] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1504.469482] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.291748] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1510.207764] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.012085] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.804199] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.220947] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.532715] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.643433] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.653442] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.466064] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.193970] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1529.713257] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.053711] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.299805] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.270996] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.103638] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.761719] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.261719] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.577759] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.721313] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.682983] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.457764] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1535.047729] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.435425] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.586548] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1532.626587] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.433960] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1530.057983] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.561157] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.847412] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.956665] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1522.933350] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.579834] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.145142] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.731201] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.022583] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1510.388428] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.338257] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1503.285278] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.424072] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1495.585693] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.285278] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1486.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.888916] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.060059] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1471.578125] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1465.906128] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.300049] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.256470] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.119629] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.695068] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.169556] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.247559] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.093994] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.644653] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.944336] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.135132] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.951416] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.617920] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.266357] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.621460] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.660522] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.510620] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.468262] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.776123] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.843750] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.167358] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1299.595459] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.171875] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.869385] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.707153] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.767700] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.048706] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.549438] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.665161] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.127930] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.453247] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.203369] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.091797] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.791992] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.876221] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.540039] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.979980] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.708130] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.233643] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.051758] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.975830] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.943237] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.967651] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.924194] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.321289] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.478271] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.086304] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.175903] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.472839] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.429138] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.871216] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.874084] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.823547] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.954102] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.142944] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.228943] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 936.296204] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.893433] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.294861] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 915.812622] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 909.715088] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 904.344666] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 899.102417] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.143162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 894.666992] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 890.663086] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.333000] [Data Ref: 887.148926] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 0.666000] [Data Ref: 884.195679] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 881.959045] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 880.222839] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 879.068237] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 878.589600] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 878.772400] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 879.640320] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 881.181885] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 883.699097] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 886.591492] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 889.941162] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 893.999878] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 898.757263] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 903.634705] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 909.088501] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 915.774292] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 922.724670] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 930.648071] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 938.681702] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 946.884644] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 955.839355] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 965.287292] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 975.395203] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 985.891174] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 996.655151] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1007.893433] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1019.695557] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1030.866821] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1042.575195] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1054.487427] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1066.781128] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1078.877075] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1091.008423] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1103.277588] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1115.356689] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1128.169434] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1141.129517] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1153.685791] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1166.308105] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1178.847534] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1191.313110] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1203.944824] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1216.506348] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1227.706787] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1239.567017] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1251.129028] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1262.339966] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1273.306030] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1283.969604] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1294.581421] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1305.030396] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1314.477661] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1328.862549] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1339.376587] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1349.289185] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1359.206543] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1368.067749] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1376.145752] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1384.005981] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1391.502075] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1398.150879] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1404.427612] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1410.512573] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1416.428833] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1421.721680] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1426.361084] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1430.811401] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1435.161133] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1438.889526] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1442.125366] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1445.038818] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1447.864502] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1450.821045] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1452.691895] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1454.649414] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1455.876587] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1456.553711] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1456.802246] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1456.573975] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1455.840576] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1454.642212] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1453.085083] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1450.892578] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1448.305786] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1445.511475] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1442.219360] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1438.472900] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1434.429199] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1429.951904] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1425.039551] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1419.167969] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1412.911255] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1406.598633] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1399.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1391.652222] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1384.095581] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1375.805664] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1367.690430] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1359.055054] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1349.639160] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1340.143066] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1330.024780] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1318.803589] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1307.784668] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1295.796509] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1283.847046] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1270.924561] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1258.419800] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1245.985352] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1232.048950] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1215.884155] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1201.129883] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1186.864136] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1172.370361] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1157.169067] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1140.981934] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1127.087524] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1112.133911] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1098.122803] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1084.414429] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1068.642090] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1053.646606] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1038.259521] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1024.451050] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1002.167053] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 985.843079] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 969.256897] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 954.596375] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 937.839294] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 920.990662] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 906.328674] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 891.726624] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 877.219055] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 863.537476] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 850.399109] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 838.283752] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 826.975952] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 816.659790] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 806.664368] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 798.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 792.730347] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 787.563782] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 782.690735] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 778.721069] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 775.551575] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 772.332397] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 770.364136] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 769.323792] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 769.055176] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 769.667358] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 770.996399] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 772.910950] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 775.813110] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 779.256470] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 783.392761] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 790.208008] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 796.046265] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 802.583557] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 809.606445] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 816.938477] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.143162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 823.748779] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 831.158325] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 838.518311] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 848.469116] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 858.847412] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 869.485596] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 878.833435] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 889.069885] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 899.725830] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 910.695374] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 920.862488] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 929.826172] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 939.498718] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 948.667236] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 957.862061] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 967.224915] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 976.603210] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 985.875244] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 994.605347] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1004.126099] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1014.068542] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1022.884460] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1033.313721] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1044.314575] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1053.529907] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1062.085571] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1070.266724] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1077.390991] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1084.828247] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1091.968872] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1098.824829] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1106.194092] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1113.994873] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1120.945923] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1128.010864] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1134.203735] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1140.658325] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1147.281738] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1153.255737] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1159.032227] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1163.770386] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1168.366333] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1172.277466] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1176.431641] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1180.346313] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1184.187866] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1187.651611] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1190.996460] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1193.864624] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1196.231079] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1198.966431] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1201.396118] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1203.102295] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1204.916016] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1206.521240] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1207.689209] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1208.604736] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1209.242432] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1209.611572] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1209.738647] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1209.598267] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1209.128784] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1208.344727] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1207.287964] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1205.938843] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1204.209839] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1202.122070] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1199.720825] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1197.187378] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1194.177856] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1190.566040] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1186.562256] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1182.700317] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1177.862671] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1173.145996] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1168.377808] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1163.199707] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1157.902222] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1152.217041] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1146.276489] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1139.904541] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1133.371704] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1126.590332] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1119.083008] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1111.365845] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1102.769775] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1094.716064] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1086.573730] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1077.575317] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1067.846069] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1058.271973] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1047.875366] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1037.170654] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1025.722290] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1014.968018] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1004.611145] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 993.619019] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 981.355103] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 968.785339] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 957.219849] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 945.162964] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 932.672546] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 920.566040] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 907.735168] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 895.380127] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 882.939697] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 869.710449] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 855.960876] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 843.671204] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 829.869568] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 817.095337] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 804.797485] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 791.572754] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 778.047424] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 765.353760] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 753.250977] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 741.794312] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 729.964600] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 718.894104] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: -0.153162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 706.666138] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: -0.143162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 694.685913] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: -0.133162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 681.920288] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: -0.123162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 670.208069] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: -0.113162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 660.490662] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: -0.103162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 651.152222] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: -0.093162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 642.051880] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: -0.083162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 633.485596] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: -0.073162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 625.767822] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: -0.063162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 618.641052] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: -0.053162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 612.763672] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: -0.043162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 607.220215] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: -0.033162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 602.248230] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: -0.023162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 598.068481] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: -0.013162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 594.718140] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: -0.003162] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 591.869568] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: 0.006838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 589.678894] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: 0.016838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 588.312805] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: 0.026838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 587.523743] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.036838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 587.390564] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.046838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 587.835388] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.056838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 588.862183] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.066838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 590.420715] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.076838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 592.495361] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.086838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 595.030945] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.096838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 598.504761] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.106838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 602.051331] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.116838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 606.337341] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.126838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 611.000610] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.136838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 615.916504] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.146838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 621.259155] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 627.076050] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 633.707886] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 641.502686] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 651.084473] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 661.573914] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 671.104065] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 681.372742] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 690.667908] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 700.317200] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 709.249390] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 718.112183] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 726.990845] [T/O: false ][Cruise: true ] +[Elevator: 0.206296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 735.481140] [T/O: false ][Cruise: true ] +[Elevator: 0.196296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 743.389038] [T/O: false ][Cruise: true ] +[Elevator: 0.186296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 752.492310] [T/O: false ][Cruise: true ] +[Elevator: 0.176296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 760.919617] [T/O: false ][Cruise: true ] +[Elevator: 0.166296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 775.473328] [T/O: false ][Cruise: true ] +[Elevator: 0.156296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 787.025513] [T/O: false ][Cruise: true ] +[Elevator: 0.146296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 797.726563] [T/O: false ][Cruise: true ] +[Elevator: 0.136296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 809.008423] [T/O: false ][Cruise: true ] +[Elevator: 0.126296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 818.996094] [T/O: false ][Cruise: true ] +[Elevator: 0.116296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 828.859436] [T/O: false ][Cruise: true ] +[Elevator: 0.106296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 838.283203] [T/O: false ][Cruise: true ] +[Elevator: 0.096296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 847.626770] [T/O: false ][Cruise: true ] +[Elevator: 0.086296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 856.067749] [T/O: false ][Cruise: true ] +[Elevator: 0.076296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 864.136536] [T/O: false ][Cruise: true ] +[Elevator: 0.066296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 872.997009] [T/O: false ][Cruise: true ] +[Elevator: 0.056296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 882.000061] [T/O: false ][Cruise: true ] +[Elevator: 0.046296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 890.359802] [T/O: false ][Cruise: true ] +[Elevator: 0.036296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 897.731323] [T/O: false ][Cruise: true ] +[Elevator: 0.026296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 906.238831] [T/O: false ][Cruise: true ] +[Elevator: 0.016296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 914.295654] [T/O: false ][Cruise: true ] +[Elevator: 0.006296] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 921.163818] [T/O: false ][Cruise: true ] +[Elevator: -0.003704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 927.765442] [T/O: false ][Cruise: true ] +[Elevator: -0.013704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 933.973816] [T/O: false ][Cruise: true ] +[Elevator: -0.023704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 939.546387] [T/O: false ][Cruise: true ] +[Elevator: -0.033704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 945.258484] [T/O: false ][Cruise: true ] +[Elevator: -0.043704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 950.350708] [T/O: false ][Cruise: true ] +[Elevator: -0.053704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 954.979553] [T/O: false ][Cruise: true ] +[Elevator: -0.063704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 959.735229] [T/O: false ][Cruise: true ] +[Elevator: -0.073704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 963.885986] [T/O: false ][Cruise: true ] +[Elevator: -0.083704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 967.968750] [T/O: false ][Cruise: true ] +[Elevator: -0.093704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 971.831726] [T/O: false ][Cruise: true ] +[Elevator: -0.103704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 975.741028] [T/O: false ][Cruise: true ] +[Elevator: -0.113704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 979.589111] [T/O: false ][Cruise: true ] +[Elevator: -0.123704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 983.064392] [T/O: false ][Cruise: true ] +[Elevator: -0.133704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 986.169739] [T/O: false ][Cruise: true ] +[Elevator: -0.143704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 988.961426] [T/O: false ][Cruise: true ] +[Elevator: -0.153704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 991.450745] [T/O: false ][Cruise: true ] +[Elevator: -0.163704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 993.864136] [T/O: false ][Cruise: true ] +[Elevator: -0.173704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 996.199585] [T/O: false ][Cruise: true ] +[Elevator: -0.183704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 998.299805] [T/O: false ][Cruise: true ] +[Elevator: -0.193704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1000.109863] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1001.722778] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1003.008179] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1003.727295] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1004.161682] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1004.345032] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1004.273682] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1003.938660] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1003.343628] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1002.522034] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 1001.329163] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 999.663513] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 997.840149] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 995.695374] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 993.291992] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 990.327698] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 987.419373] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 984.032715] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 980.356506] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 976.427429] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 972.191528] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 967.168091] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 961.296814] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 954.963623] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 948.080933] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 940.686523] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 932.783508] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 924.388611] [T/O: false ][Cruise: true ] +[Elevator: -0.203704] [Roll: 0.156838] [Yaw: -0.000632] [Throttle:1.000000] [Flaps: 1.000000] [Data Ref: 915.537842] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149213] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149199] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149179] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149128] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149022] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149030] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149115] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149564] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149265] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149110] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149254] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149523] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149864] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150562] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151296] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151315] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150776] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150269] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149611] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149306] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148996] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148538] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147624] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145999] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143452] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139702] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125382] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120887] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117313] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111750] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109817] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108380] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107310] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106678] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106776] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107697] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109374] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111754] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114341] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117158] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.120055] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122985] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125764] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128929] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135237] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138406] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141291] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143385] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145060] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146162] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147035] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147506] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148028] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149155] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149153] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149153] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149238] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149500] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150372] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152822] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153760] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155373] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156310] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157084] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157819] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158781] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159978] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161291] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162731] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164299] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165330] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165970] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166288] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166800] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167685] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168732] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169394] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169609] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169523] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169152] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168501] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168580] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169470] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170310] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172414] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.173610] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174596] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175421] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176287] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177499] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178004] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178181] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179017] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179752] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180517] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181566] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181892] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182065] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181942] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182019] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183025] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184878] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187139] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188936] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189508] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189083] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188068] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186299] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185950] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186426] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187914] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190232] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192141] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192551] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191683] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190482] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190141] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191318] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193709] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.197307] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201095] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.204188] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206777] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208824] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209945] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214317] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218534] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219573] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221132] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.231337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.235657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.240909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.247356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.615639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.954678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.395489] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.962166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 59.558540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 62.001236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.820526] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.630928] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 70.557137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 73.200066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.069115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.724411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.832054] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.829781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.967087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.977913] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.099525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 98.487953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 101.733612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.811195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.381371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.936211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.441742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.228683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.907692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.701782] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.312195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.718872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 137.508530] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 141.342484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 145.267166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.071091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.956451] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.805801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.607666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.409546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.336517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.997543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.070313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.227005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 184.189590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.162781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.242203] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 196.191010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.165649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.233002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.052780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.170227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.209564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.221893] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.487381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.421478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.506042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.575104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 241.401382] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 245.393524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.279877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 252.748199] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.328461] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.996033] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.577240] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 266.822083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.240723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.206238] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.524750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.808411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.737946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.788208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.518463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.574310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.162598] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.980652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.586517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.594025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.445129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.968689] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.573669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.967316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.553925] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.858124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.220001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.626556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.825195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.043243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.359650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.533600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.626221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.751648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.701111] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.778656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.699768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.786163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.765137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.536713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.307922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.964691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.776733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.380310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.816681] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.405334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.841614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.279541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.672089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.945557] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.250946] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.470581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.686127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.808289] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.972626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.001129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.164032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.241486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.285736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.258789] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.219879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.094421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.899078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.655090] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.399658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.053711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.693634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.289307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.839813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.330414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.782806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.190735] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.555084] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.876617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.152863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.391937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.595123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.761292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.894806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.997284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.071869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.121277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.148651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.157196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.149994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.129333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.098297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.059021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.014343] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.967133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.918671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.869995] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.829010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.791840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.760010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.737640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.727173] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.730927] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.752106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.793854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.855621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.941803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.051605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.201843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.387787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.611877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.876404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.186157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.538055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.904785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.345306] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.831787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.362823] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.945648] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.584625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.407837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.110535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.902496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.750366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.612732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.541077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.551514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.545532] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.678467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.867554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.037628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.351746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.719727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.172638] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.634796] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.160645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.798370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.517273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.293762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.115295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.981018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.935822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.022858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.159912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.385742] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.635590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.968445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.415924] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.873840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.378113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.959778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.590302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.291473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.075409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.871124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.783447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.703308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.427429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.229858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.293976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.411743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 469.563477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.774109] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 475.985321] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.283691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.591919] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.003204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.337402] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.734192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.186066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.676422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.132202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.661255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.186340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.750916] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.061890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.650330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.268066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.657166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.283325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.670166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.343994] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.750732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.447815] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 548.581604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.748657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.433899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.129211] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.796204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.464172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.134583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.767456] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.423645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.014282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.607849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.178284] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.730835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.258606] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.752502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.225952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.673828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.071838] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.465149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.309448] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.397095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.282043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.102783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.984375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.714966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.652771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.636902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.194885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.220093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.210510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.161316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.067383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.941223] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.738525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.324646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.069702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.144165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.779114] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.302917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.782776] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.227783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 677.620117] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.957275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.297302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.653015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.751160] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.717407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.505798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.104675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.813538] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.403992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.152039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.789673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.182739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.497437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.957275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.618347] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.242981] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.479736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.570007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.618958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.695801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.681152] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.699951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.640137] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.563049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.484253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.354736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.240356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.088867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.842407] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.714844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.540894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.288879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.028076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.736572] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.453125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.152954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.800781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.437622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.070740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.768188] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.419556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.057068] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.602600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.117676] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.671753] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.167786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.653503] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.128174] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.599121] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.008667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.443542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.890808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.404358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.892334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.344543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.748840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.138245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.530273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.902039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.270935] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.663635] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.028381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.413086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.828125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.234863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.659729] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.110352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.549133] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.966125] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.386841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.817993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.290466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.745300] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.189087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.676514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.145630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.653992] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.190979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.692200] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.263367] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.948975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.655396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.373535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.064514] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.873718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.718445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.430542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.195374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.973083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.745056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.545349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.506165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.500549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.404846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.411682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.464417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.485840] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.543213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.576660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.684937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.876099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.051453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.324097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.532349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.839844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.169556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.476746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.913452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.359314] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.935181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.341309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.787659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.395630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.916016] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.556335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.175232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.876221] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.631470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.350830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.246704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.211914] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.097046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.990356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.857544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.851013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.895264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.895142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.897278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.996460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.977966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.185303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.397034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.388000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.331909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.497620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.773071] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.931458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.138428] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.494263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.716797] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.076355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.292542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.913574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.663086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.102112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.713196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.360535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.772644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.258423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.717651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.250854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.817017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.704468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.647766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.294495] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.055786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.590271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.532349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.269470] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.038330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.701233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.194702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.074951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.402527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.223267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.608337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.763794] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.660828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.185425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.950439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.392334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.774292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.244324] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.801147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.132446] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.355225] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.801880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.326355] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.690308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.066345] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.359985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.668091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.185730] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.602417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.098755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.771912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.218323] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.571045] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.942871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.274963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.763733] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.188049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.540771] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.854614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.987610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.315308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.406555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.614441] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.804443] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.926819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.912720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.293030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.390442] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.429688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.455811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.990295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.706238] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.029602] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.699646] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.328369] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.021912] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.720459] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.559692] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.468933] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.429260] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.215210] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.038574] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.731567] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.922852] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.006714] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.034302] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.017090] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.934448] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.804810] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.568115] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.268066] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.846802] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.447754] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.969727] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.280762] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.557251] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.734863] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.585449] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.508789] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.398804] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.127319] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.729248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.302490] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.896118] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.166260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.304321] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.333008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.270142] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.118286] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.888184] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.555664] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.120728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.580811] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.958008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.236450] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.412598] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.440796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.335938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.195923] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.018799] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.753052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.360107] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.869019] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.252563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.581299] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.733521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.825195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.851929] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.749512] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.586304] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.225952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.867798] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.431824] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.670776] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.752380] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.583008] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.417358] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.192444] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.421570] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.564697] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.882263] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.661194] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.673889] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.763306] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.421631] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.076904] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.527283] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.123962] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.724060] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.642334] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.272522] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.799194] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.962769] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.911621] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.625305] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.153198] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.875244] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.687134] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.141663] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.067932] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.231018] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.538696] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.990479] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.646240] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.465088] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.486145] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.836670] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.283508] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.034302] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.136353] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.596985] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.240356] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.313232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.563843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.081482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.910400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.964355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.289795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.046570] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.181458] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.695679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.603943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.825378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.498779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.612549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.128967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.248108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.475891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.142822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.046143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.025696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.776123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.840210] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.421509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.266357] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.452271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.382690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.930786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.805847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.147400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.190002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.780823] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.535217] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.381409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.182068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.644409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.969238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.957642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.907715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.897339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.127197] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.990967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.552612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.919434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1106.862183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.608154] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.691772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.415039] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.803223] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.539429] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.176147] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.997192] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.982422] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.654175] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.707642] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.852295] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.188599] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.714233] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.542969] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.401001] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.200684] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.593262] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.536499] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.793457] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.169556] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.721069] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.940918] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.189819] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.971558] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.793335] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.381104] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.392212] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.019287] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.981445] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1341.934204] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.017334] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.979248] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.314819] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.585938] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.725586] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.458984] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.451172] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.119751] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.717407] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.224731] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.923584] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.708008] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.056641] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.340454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.506470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.681641] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.691772] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.384766] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.956787] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.074341] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.256958] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.422729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.510498] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.327026] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.571167] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.074829] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.333740] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.483887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.787720] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.913574] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.710571] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.341675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.790405] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.091797] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.269775] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.330444] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.255615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.034912] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.699829] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.189819] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.596191] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.819336] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.922363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.937134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.796265] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.432983] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.916748] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.245850] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.882568] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.277222] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.317505] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.950317] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.261353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.208374] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.015747] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.604614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.932983] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.793579] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.488770] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.452881] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.398315] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.663696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.050171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.508911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.760986] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.197388] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.994873] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.337891] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.600708] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.706055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.457886] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1313.848022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.190552] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.530396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.244263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.266357] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.165649] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.856689] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.866211] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.908936] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.857422] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.241943] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.459106] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.842285] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.971680] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.065063] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.055542] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.095459] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.550171] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.170532] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.454468] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.397339] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.441162] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.442627] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.368286] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.577393] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.951416] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.776733] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.599854] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.333374] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.301514] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.218933] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.418945] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.712402] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.077515] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.767090] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.231140] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.013367] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.054810] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.029785] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.234192] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.084229] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.810242] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.604492] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.759888] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.733459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.083740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.878601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.793762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.683838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.054749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.585083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.564575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.332214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.235474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.726807] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.469116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.787476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.440613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.513123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.002930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.905884] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.247925] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.085571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.361084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.077759] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.177124] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.748474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.812927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.197510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.111389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.247864] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.515442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.687012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.226501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.911621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.977112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.414978] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.187500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.298462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.768677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.899597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.644348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.668091] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.245544] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.532288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.063538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.418396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.847717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.661865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.066711] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.399719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.678955] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.633789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.786316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.928101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.757080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.036621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.812378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.229980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.578735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.621460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.117798] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.229126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.494507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.533936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.130249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.261963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.457520] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.023315] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.818848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.698242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.746094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.447266] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.102905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.223755] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.414307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.405762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.297974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.510620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.158203] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.196289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1293.707153] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.663086] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.352905] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.022583] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.510010] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1339.009888] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1347.727417] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.550171] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.594360] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.159058] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.889160] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.376099] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.972290] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1408.257935] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.779541] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.672241] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.148193] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.608521] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.934326] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.475586] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.025757] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.341431] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.756470] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.108643] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1485.006104] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1491.063232] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.955322] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1502.599243] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1507.802368] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.244385] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.610474] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1523.694580] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.514771] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.864868] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.514648] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1543.950195] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1548.371338] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.740601] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1556.843750] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1560.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.611572] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.336792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.832275] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1575.431030] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1579.142822] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.198486] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.791260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.809692] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1592.527588] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.882446] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.257202] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.456543] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.515137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.463257] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.375732] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.172363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.765503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.376099] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1611.872559] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.003784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.944458] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.777344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.401367] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.825195] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.022949] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.989258] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.731323] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1615.186035] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.296509] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1613.142334] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1611.705078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.122192] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1608.237183] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.889038] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.303101] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.374390] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.278320] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.977295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.900879] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.440552] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.826172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.129883] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1571.404297] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.050903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.142822] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1551.935547] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.238037] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1536.546387] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1530.856079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1524.824951] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1518.430908] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1511.922485] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.156128] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1498.004517] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.566406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.377808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1475.721558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.552002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.114014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.266724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.090820] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.745972] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.961548] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.816284] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.665039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.657593] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.960205] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.823364] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.131958] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.984375] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.554810] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.149536] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.029419] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.872681] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.106567] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.011597] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.789795] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.583374] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1233.079468] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.834229] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.722778] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.248169] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.429199] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.362793] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.789795] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.813965] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1107.586060] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.698853] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.625366] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.435791] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.521240] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.709229] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.162598] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.182190] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.203918] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.685242] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.028748] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.996948] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.855591] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.982544] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.295349] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.718079] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.396362] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.353333] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.795166] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.149719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.945190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.078491] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.245605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.818054] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.815796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.780945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.480225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.004944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 632.750549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.126770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 602.032166] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.439758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.670898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.256409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.928284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.299744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.349609] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.341248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.974731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.632202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.106323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.784851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.414825] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.775543] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.070770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.240875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.283417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.299133] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.343323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.499023] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.638672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.438599] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.250732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.638916] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.115479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.370605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.727173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.105957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.772095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.073486] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.554871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.763123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.132080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.208313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.149963] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.914368] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.613342] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.038818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.744202] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.020020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.392517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.142456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.188843] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.150330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.880249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.551636] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.949524] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.795227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.434082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.440674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.647766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.922424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.620300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.167786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.194946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.059265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.652649] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.749756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.621338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.047058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.425293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.593750] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.186157] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.614380] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.571655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.291504] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.545654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.570068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.844360] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.642822] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.037598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.862549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.956787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.245483] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.508423] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1212.062500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.952637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.793457] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.504028] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1252.670776] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.249390] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.881836] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.747681] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1295.408081] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.699097] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.732788] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.628418] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.245483] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.504028] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1351.992554] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.589722] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.036621] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.429443] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.202637] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.341675] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.630249] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.647339] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.139160] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.122070] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.075439] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.645264] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.054810] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.310669] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.044556] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.227417] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.486450] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.681763] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.793091] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.305176] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.678589] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.656494] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.448975] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1471.924072] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.116943] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.102661] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.885254] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.261841] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.430298] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.239502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.754639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.931519] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.801270] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.354614] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1480.602905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1479.406494] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1477.986450] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.257446] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.265747] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1471.949829] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.329346] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1466.214355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.963623] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.491211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.002319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.114990] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.092651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.080200] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.088867] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.039917] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1426.758911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.886353] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1414.547363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.725830] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.940063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.858887] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.144653] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.467773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.566528] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.863525] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.710693] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.410889] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.425781] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.903076] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1304.445313] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.983154] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.132935] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.478394] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.137817] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.438599] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.242798] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.418213] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1214.633667] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.224609] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.508667] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.244263] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1162.176270] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.474609] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.770874] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.815918] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.679565] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.393188] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.132568] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.289551] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.718628] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.451782] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.435852] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.486694] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.500732] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.015076] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.389648] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.851563] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.998291] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.850769] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.507690] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.906921] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.642273] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.692078] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.442871] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.101074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.153076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.561218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.993591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.664734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.086853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 622.907776] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.816040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.945374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.772095] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.728333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.844238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.295227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.319000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.295959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.223053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.345123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.594086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.491211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.643463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.239563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.033783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.265198] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.168488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.138428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.049225] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.569061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.220306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.460876] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.060577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.685394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.396545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.996857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.943512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.841675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.837860] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.664673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.714325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.930847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.861816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.658936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.697571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.966461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.970734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.669708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.061493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.427734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.558319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.632477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.285828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.592773] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.701660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.382813] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 550.322205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.004639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.040710] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.563538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.384094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.907837] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.737671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.160461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.201477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.380981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.280640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.077576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.953064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.541443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.286865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.935913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.098328] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.173889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.026489] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.623474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.159973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.159424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 863.903931] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.170959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.815002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.612061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.468872] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.519714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.868835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.804626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.900085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.390991] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.290833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.935547] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.335205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.752563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.599731] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.688965] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.537109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.757446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.759521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.081421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.255493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.473267] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.858887] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.562500] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.656250] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.710083] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.856567] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.384033] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.159546] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.254150] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.282349] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.434570] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.702393] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.020630] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.329468] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.650879] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.540039] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.097290] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.602051] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1286.907471] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.838745] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1303.176514] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.950439] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.671509] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.469849] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.761963] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.624390] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.070190] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.326294] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.574585] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.553345] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.093506] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.282104] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.289917] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.359985] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.435547] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.210205] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.706055] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.902344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.801636] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.513184] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.821167] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.028687] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.884521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.414795] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.635620] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.722290] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.602661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1310.905762] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.925415] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.576050] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.863403] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.813110] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.819214] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.164551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.739624] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.183350] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.468018] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.265259] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.665649] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.522583] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.169067] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.141602] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.723145] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.703003] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.816528] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.806274] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.668213] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.375610] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.054688] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.337402] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1136.530273] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.651978] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.735229] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.219727] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.911987] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.175293] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.105225] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.150635] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.721924] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.503113] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.660278] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.305725] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.336792] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.623230] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.945313] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.966797] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.195129] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.294556] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.072510] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.951904] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.768066] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.808105] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 822.282043] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.095215] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.596069] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.660583] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.171509] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.027588] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.073853] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.003906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.881409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.086487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.661621] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.979919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.255981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.754944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.542419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.184631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.218689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 502.280090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.135681] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.478455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.428070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.220612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.862244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.127106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.582092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.535156] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.911865] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.955475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.344391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.457977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.491852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.920715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.086136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.481110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.275269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.978531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 217.895157] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.066757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.883972] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.764511] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.591446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.562088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.732849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.173218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.557404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.096512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.066238] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.349106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 237.466476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.802139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.545227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.140594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.894531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.958374] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.594330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.226440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.792999] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.031006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.523712] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.196045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.311249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.723846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.734497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.844696] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.973175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.920441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.569366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.942474] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.661743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.241943] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.721680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 559.657532] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.493103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.436646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 604.903687] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 619.966492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.992493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.239197] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.549622] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.675781] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.955139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.763245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.148376] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.213745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.003296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.923584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.702087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.300659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.091736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 817.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.017090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.748718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.965149] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.738831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.669739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.342896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.855103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.022949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.031311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.770691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.251221] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.576721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.156250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.369324] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.728333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.322327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.670593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.639526] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.024780] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.240356] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.411255] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.013062] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1060.548462] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.528320] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.581787] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.535767] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.354614] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.893188] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.827026] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.144043] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.221313] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.869263] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.322754] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.998169] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.083374] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.721436] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.092285] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.004883] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.108765] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.983154] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.943604] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.472290] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.598389] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.814453] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.610840] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.275269] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.566650] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.415894] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.045044] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.111084] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.840088] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.212646] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.235962] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.896973] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.133911] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.049927] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.593506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.817017] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.496704] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.838501] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.881470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.483032] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1190.862549] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.443359] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.962769] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.054199] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1163.903931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.130615] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.875977] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.273193] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.348511] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1126.186523] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.046997] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.722412] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.439819] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.877319] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.975708] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.699585] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.735596] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.589600] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.956299] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.049683] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.177795] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.783936] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.294861] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.132019] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.035400] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.739624] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.252869] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.280029] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.828613] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.865112] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.843201] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.374207] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.443359] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.742371] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.719910] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.685547] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.052673] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.418152] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.585266] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.027100] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.740479] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.848999] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.641541] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.946777] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.675537] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.267517] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.514587] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.616028] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.882629] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 560.481995] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.265137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.162659] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.622955] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.900970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.871765] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.761383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.947937] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.061127] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.063934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.764130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.719757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 312.266632] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.314941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.036652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.453934] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.626785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.276581] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.915176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.716995] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.103241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.076782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.338013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 126.960289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.449471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.278206] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.258003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.523399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.199265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.140930] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.501785] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.141457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.091782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.343452] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.831375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.903732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.652428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.233749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.179131] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.087074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.787186] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.956757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.826141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.132782] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.762436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.195740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.134125] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.643265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.659134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.683258] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.720306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.882355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.761261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.205292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.670898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.614410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 323.612579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 337.239899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.863525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.590973] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.056732] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.564606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.730774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 418.459900] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.476257] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.720459] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.225403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.399017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.904907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.711792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.884338] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.912231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.474182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.509705] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.924011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.687195] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 593.130615] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.854187] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.786316] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.884399] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.085632] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.553101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.652588] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.001770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 693.744690] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 706.226074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.531372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.699890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.815613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.057739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.459351] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.375000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.556763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.500427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.441162] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.086365] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.987610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.804565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.466614] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.252686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.363281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.438660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.455627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.259644] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.202087] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.293823] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.020996] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.833740] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.027344] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.110901] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.293884] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.245300] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.905212] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.270752] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.110962] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.777893] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.627441] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.095154] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.934082] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.826172] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.260864] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.433594] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.618896] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.671143] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.108643] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.228760] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.488281] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.041748] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.678955] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.019775] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.099609] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.909424] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.417847] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.819214] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.692139] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.473877] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.954712] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.285034] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.239380] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.000488] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.440308] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.628052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.540405] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.176147] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.524780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.549316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.305054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.740601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.929810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.931396] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1074.485718] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.770386] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.676636] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.535034] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.997925] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.367798] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.294189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.627930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.065796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.851685] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.447510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.977783] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.969421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.071655] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.356750] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.459900] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.315674] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.041138] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.631104] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.629578] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.733765] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.883667] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.454102] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.279968] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.269958] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.336975] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.589905] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.953613] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.385559] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.991943] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.521973] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.687744] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.425964] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.076416] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.093933] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.528870] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.006836] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.026062] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.520081] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.689514] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.171509] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.848328] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.446106] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.687256] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.937561] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.119385] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.181458] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.985352] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.521484] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.910645] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.747498] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.704651] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.588501] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.768799] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 553.214966] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.788391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.138245] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.740509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.434021] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.808380] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.163849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 441.445526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.935577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.862946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.377625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.250946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.713470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.692688] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 328.514496] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.297852] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.221375] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.639740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.437622] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 249.217194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.684265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.045059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.015472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.541489] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 174.357025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.925278] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.150436] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.970047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.771179] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 115.450111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.942764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.415527] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.495796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.039757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.170761] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 79.578117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.222771] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.024879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.881096] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 76.750557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.427803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.161400] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.797058] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.774513] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.935013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.167595] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.655159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.913895] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.973259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 130.594666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.326340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.224594] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 159.241348] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 169.312210] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.870728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 190.328430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.548340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.833755] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 224.250427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.287415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.634857] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 260.237427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.755768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.944336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.745209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.270538] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.054962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.164032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.604828] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.707947] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.249237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.151367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.768280] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.740662] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.128326] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.453186] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.778229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.977783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 497.724945] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.245239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.173401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 535.879395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.891235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.789978] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.967224] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.001282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.516296] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.132751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 634.298279] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.939026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.142151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.932312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.571655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.125427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.268494] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.876892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.420349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.762695] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.143005] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.363342] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.892212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.675720] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.889099] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.435730] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.237488] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.168396] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.684875] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.599243] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.218750] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.612915] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.841187] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.633118] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.298218] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.336914] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.943298] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.989624] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.991089] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.346497] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.339233] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.408081] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.699646] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 998.645447] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.584656] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.836670] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.874146] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.756409] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.778809] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.141968] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.819092] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.891968] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.780518] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.217407] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.161377] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.468140] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.280273] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.775146] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.836304] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.645142] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.958374] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.734375] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.051147] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.892090] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.179199] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.047363] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.734619] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.879639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.357178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.692017] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.978882] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.736084] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.116455] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.002991] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.460876] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.460022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.955383] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.839478] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.005249] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.615540] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.348206] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.633057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.376099] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.810364] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.910400] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.998169] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.786682] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.943115] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.372009] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.250916] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.819946] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.984741] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.310791] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.361633] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.804016] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.693115] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.639221] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.090271] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.433411] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.889526] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.080139] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.011108] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.898010] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.348450] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 659.121033] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 644.889160] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 629.500305] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.850403] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.049805] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.475647] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.158936] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.749023] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.912842] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.992737] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.885803] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.038208] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.448029] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 453.260040] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.267059] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.366516] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.689758] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.294067] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.421295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.730835] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.614716] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.295044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.575775] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.409515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.053589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.605087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.018311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.218155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.115784] [T/O: false ][Cruise: true ][Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000000] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149286] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149240] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149179] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149076] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149094] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149174] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149340] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149563] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149534] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149209] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149066] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149096] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149261] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149543] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149907] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150777] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151029] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150757] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149799] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149337] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148844] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148444] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147709] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143879] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140350] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135971] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130991] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125970] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121109] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117257] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.114124] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111613] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110095] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108454] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.106724] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108614] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113037] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115720] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.118362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121509] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124129] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.127197] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130260] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.133070] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.136388] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.139713] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.142347] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.144292] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145918] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146798] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148008] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148789] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149327] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149418] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149275] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149326] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149426] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149899] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150790] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152106] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153475] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154416] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155533] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157375] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158080] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158875] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160089] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161224] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.162695] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165462] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165498] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165518] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166236] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167243] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168112] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168235] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167690] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167490] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167186] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167032] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167374] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168387] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169802] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.171302] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172636] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174201] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175669] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.176718] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177465] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178191] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179088] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180334] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180588] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181038] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181442] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181606] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181656] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181684] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182644] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.184583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186706] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188079] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187651] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186456] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185709] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185347] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185586] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186355] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187537] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189637] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191780] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193023] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192829] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191298] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189507] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188160] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188336] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189754] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192074] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195000] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.198356] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.201164] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.203274] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205048] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.206352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.207918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208812] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.210575] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214765] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.215569] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217509] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.218406] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219194] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222003] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.228165] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.238264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244721] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.252510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261423] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.273142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.288236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.308255] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.335138] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.371185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.417783] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.478164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.553463] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.645590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.755391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.886506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.038837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.216197] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.418843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.651389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.915593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.215937] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.534746] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.911011] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.280798] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.731091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.211962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.740267] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.320644] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.938295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.589903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.288979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.120329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.017889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.911636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.937901] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.043282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.221455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.411474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.532959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.803453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.051025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.479477] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.964874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.545105] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.028965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 39.670086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 41.406281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 43.137455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 45.129341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 47.260147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 49.349236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.599609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.961411] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.348427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.952637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.634056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 64.391953] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 67.005600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.838242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.682434] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.712982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.826019] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.809326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 85.007843] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 88.312065] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 91.427216] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 94.435326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.472336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.580788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.893181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.252243] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.931847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 114.464607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 118.145325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.666008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 125.272743] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.892990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.397339] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.873123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 139.611374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.128525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.755280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.316879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.121429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 157.787430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 161.617752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.216492] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.972122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 172.685623] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 176.229965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.998291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.926041] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.621277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.310486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.741684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.218582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.750031] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 205.267563] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.877075] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.472626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.964340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.454453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.913712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 229.709610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 233.140518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.710388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.381668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 244.043106] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.528809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.932480] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 254.476700] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.986176] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.209595] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.514801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.673431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.885468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.104858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.050842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.039886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 282.902039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.819214] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.758209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.736725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.518677] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.289551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.063873] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.774841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 305.435059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.034424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.628845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.282410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.675354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 317.832336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.142242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 322.408813] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.826904] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.127502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.337158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.571198] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.851318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 336.084656] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.195251] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.174744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.062744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.989166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.884918] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 347.698975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.423340] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.112457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.726593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 354.389374] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.853668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.287231] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.650269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 359.984894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.331665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.552185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.831665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.051147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.233063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.303497] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.309418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.370209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.314667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.260162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.107819] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.937164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.781158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.516388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.266449] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.931458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.605713] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.185303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.696228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.185455] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.656342] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.063080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.462616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.863708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.213562] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.469055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.761261] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.046997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.307007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.541687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.753357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.944336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.115631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.269501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.404877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.526520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.634094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.731018] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.817871] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.897217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.971191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.042786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.114044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.187439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.266510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.353149] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.449829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.552521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.678894] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.824097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.988922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.177063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.389832] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.631012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.900482] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.192291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.505707] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.830811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.179352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.553192] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.972687] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.409698] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.867737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.390930] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.948517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.585419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.216888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.897675] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.665131] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.443329] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.274078] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.129150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.984802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.987091] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.990845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.003143] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.102875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.250275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.435150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.748962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.183044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.512604] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.894775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.418945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.782715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.219330] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.803802] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.393768] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.112915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.977112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.815338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.694275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.567841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.509460] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 427.549316] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.587219] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.804932] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.919800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 436.095093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.357880] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.739899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.113861] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.502808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.874664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.383209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.931000] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.575714] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.020142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.572662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.213898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.800659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.544556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.249634] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.178955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.013245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.005524] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.941589] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.118958] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 489.126862] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.092102] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.198975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 498.150787] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.063934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.021210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.075378] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.140808] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 512.919739] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 515.507263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.365051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 521.455444] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.694702] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.025879] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 531.113525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.151917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.204529] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.533752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 543.522766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.634155] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 549.696228] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.742920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.801453] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.786499] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.072083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.528564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 568.921265] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.217285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.414001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.530273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.552368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 584.803467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.023315] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 591.086182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.104980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.208496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.197083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 603.319336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 606.306274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.254089] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.106506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.929993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.706116] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 620.553040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.337341] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.044617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.654358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.229004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.835632] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.344666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.879028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.367432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.903809] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 646.297119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.640991] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 651.057190] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.517639] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.908142] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.302368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 660.522278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.921631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.163574] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.401062] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.724609] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.123474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.245972] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.375854] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.354370] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.372986] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 682.620178] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.735779] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.743652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.668518] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.683960] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.530273] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.226318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.865662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 697.386597] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.880493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.393005] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 701.865967] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.228943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.568359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.848877] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.130615] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.384338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 709.615845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.813232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.953430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.075500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.176636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.217285] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 716.233948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.227600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.203308] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.148560] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.082581] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.985962] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.849915] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.672363] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.469727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.251282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.038086] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.770081] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.516357] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.220886] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.909668] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.529358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.170715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.808777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.388611] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.996277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.586182] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.169006] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.730591] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.291748] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.822510] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.349731] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.872070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.358337] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.854431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.347717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.820496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.327271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.780762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.243835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.688049] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.136169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.625305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.138123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.633728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.105957] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.629517] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.126770] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.689209] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.211670] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.780334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.361450] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.921326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.487122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.067993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.695496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.318909] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.944519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.602234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.265625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.968811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.657837] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.376404] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.168274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.974792] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.778625] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.610596] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.471130] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.363525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.310120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.273865] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.270447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.302124] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.363281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.397888] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.539917] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.750305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.933655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.112549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.350830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.585327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.831421] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 772.089722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.435791] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.827087] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.261108] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.785889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.293030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.912659] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.479858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.660034] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.283691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.948425] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.801208] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.623169] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.417847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.263184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.246399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.214844] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.218506] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.311829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.330322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.461975] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 810.529175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.652588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.724304] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.865662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.011963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.241821] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 823.393555] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 825.657104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.943115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.182312] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.471375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.755554] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.077759] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.471985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.845154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.291931] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.803833] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 849.253052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.688232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.222046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.781067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.245667] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.891113] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.621338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.225464] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.943665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.556519] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.284424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 877.869141] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 880.468079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.032349] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.803772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.722778] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.370728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.104858] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.725403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.402100] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.005493] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.651123] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.225708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.773682] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.414368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.972107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.517151] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.048157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.621948] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.146362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.677429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.220459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.790222] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.479187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.193970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.838196] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.541565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.985291] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.612976] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.154236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.602234] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.034058] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.615540] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.210938] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.048584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.625183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.095459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.492920] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.895508] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.315491] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.649414] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.040955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.302307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.621704] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.844788] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.118774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.301636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.432922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.596191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.086731] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.200500] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.270264] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.327271] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.333618] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.524170] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.670837] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.700562] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.644897] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.545715] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.439941] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.287903] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.873352] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.743286] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.509155] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.136475] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.579590] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.177002] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.730835] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.247925] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.646118] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.969971] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.396606] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.741089] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.924072] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.297119] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.357788] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.376587] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.384155] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.274170] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.956055] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.681519] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.313599] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.867920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.215332] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.426758] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.543945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.570801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.464966] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.240601] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.874512] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.367065] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.749878] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.982422] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.081177] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.104126] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.078979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.877930] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.391724] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.911621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.448853] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.730713] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.734497] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.797729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.884277] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.087158] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.864502] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.586426] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.499146] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.097046] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.222839] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.282776] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.642029] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1011.012634] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.224426] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.527283] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.266052] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.054932] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.183594] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.836060] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.203979] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.698914] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.313843] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.036194] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.592407] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.117554] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.621460] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.097534] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.328979] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.411865] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.823792] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.472534] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.800354] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.549438] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.547974] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.560547] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.658264] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.668335] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.043762] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.420044] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.609680] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.445129] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.618042] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.853699] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.159790] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.475830] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.243713] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.100769] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.144226] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.187988] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.428528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.896790] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.580322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.532959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.656189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.086853] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.749084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.641968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.783264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.279663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.129028] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.218811] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.602905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.194641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.005554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.078979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.363708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.888123] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.554749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.633850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.143433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.660461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.574890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.581421] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.729919] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.312378] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.237244] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.354858] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.751404] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.142517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 958.202576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.870850] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 969.569763] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.672424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 982.291077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.815979] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.612610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.233704] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.278137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.394470] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.464111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.376465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.812012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.820923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.101929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.346924] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.948730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.181885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.193848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.478271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.135132] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.469849] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.835693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.609497] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.149414] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.056763] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1158.407715] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.997803] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.379761] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.535278] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1188.644287] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.714844] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.656616] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.294434] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.984985] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.996582] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.107910] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.315552] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.965332] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.558594] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.134644] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.778931] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1277.650146] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.915283] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1289.904175] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1296.008179] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.124634] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.469971] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.613892] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.509399] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1326.458252] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.229126] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.923950] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.101318] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.980713] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.723389] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.428223] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.940918] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1371.266724] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.313599] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.536011] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.200439] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.593628] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.689575] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.554565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1404.307617] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.266846] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1410.327759] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.321777] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.187744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.109863] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.265137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.257080] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1428.033691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.534058] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.892212] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.964233] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.799316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1438.556152] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.053223] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.373901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.442993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.187988] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.860352] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.349731] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.757813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.985840] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.075562] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.015137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.441284] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.263062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1442.425171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.452393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.352295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.054810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.600464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.913696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.167358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.233765] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.108276] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.780273] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.305054] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.498169] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.267578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.700073] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1409.086914] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.649292] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.334595] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1398.352417] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1394.062744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.638794] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.865845] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.837280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.787109] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.695801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.960449] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.639648] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.949951] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.741211] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.244019] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.725464] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1323.952271] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.913086] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.787842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.492432] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.756226] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1287.195801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.872314] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.120972] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.537842] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.376221] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.687866] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1237.515259] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.168579] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1217.508545] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.815918] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.666748] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.145264] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.138306] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.467285] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.159180] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.069092] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.040405] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.004761] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.681763] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.208008] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.927979] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.080933] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.624268] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.879517] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.904297] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.993896] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.266846] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.361450] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.653320] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.987366] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.678894] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.749817] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.457703] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.536743] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.893066] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.129578] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 942.388916] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.875122] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.188660] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.925110] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.317322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.005493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.394714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.683655] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.302612] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.158081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.811707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.487915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.866882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.121216] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.186401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.228027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.757080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.702332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.122314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.883423] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.226624] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.072510] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.287415] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.994751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.195007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.866455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.046936] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 836.583740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 838.643555] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.000000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 843.838135] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.223633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.022827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 855.296204] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.125061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.652222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 875.994080] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.826660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.632141] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.685974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.869507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.390686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.154358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.075500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.319153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.773682] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.895325] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.190308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.901184] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.701721] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.354431] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.763672] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.377502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.057495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.669312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.514648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.923950] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.043457] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.694214] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.196533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.190308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.360718] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.162231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1123.467407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.040039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.261230] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.133911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.436035] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.345215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.786011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.695923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1207.449341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.343140] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.893188] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1238.958130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.949829] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.592285] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.928467] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.806519] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.355591] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1297.585693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1306.871460] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1316.316895] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.577637] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.601563] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.775391] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.703247] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.147217] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.236328] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.220459] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.448120] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.620850] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.969116] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.995483] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1431.613281] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.080444] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.579346] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.899780] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1469.049683] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1476.050293] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1483.003418] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.725342] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1496.193604] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1502.682861] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1509.018677] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1515.031616] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.669800] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1526.271851] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1531.879639] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1537.391846] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1542.587524] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.724976] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.694336] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.488892] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1561.903931] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1566.151489] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1570.487305] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1574.676880] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1578.697510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1582.477661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.992188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.628662] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1593.168701] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1596.389771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.465454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.370239] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.118286] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1607.710815] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1610.165039] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1612.455566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.592163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1616.629272] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1618.410522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1620.096558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1621.598877] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.960815] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1624.179810] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1625.246948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.153687] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.919678] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.607056] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.051025] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.342651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.461060] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.422729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1628.225952] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.848511] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1627.255005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1626.440796] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1625.312134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1623.940674] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1622.256470] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1619.965942] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1617.322632] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1614.535522] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1609.675171] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1606.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.477295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.617676] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.387451] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1590.068115] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.013062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.535889] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.392944] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.793335] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.022339] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1563.330566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1558.128052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1553.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1547.592773] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1541.705200] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.990967] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.308105] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.613892] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1514.604248] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1506.621948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1499.001709] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1490.518311] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.471558] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1464.285400] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1454.974487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.504639] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1434.903198] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1424.487427] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1413.790283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1402.376953] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.384644] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.150635] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.193726] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.281250] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.609375] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.443481] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.744629] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.084717] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1288.679932] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.465942] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.388794] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1245.599487] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.179688] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.704102] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.480835] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.339844] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.639893] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.972778] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1138.243042] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.832275] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.806519] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.979004] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.729004] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.715454] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.630981] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.966614] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.979492] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.301453] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.345154] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.315430] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.184204] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.510071] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.109802] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.537964] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.718384] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.744324] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.350586] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.825317] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.554016] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.040466] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.077759] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.361694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.323303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.820435] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.068420] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.922913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.099182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 628.682495] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.577698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.006592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.387329] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.496460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.116455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.989441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.817780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.291809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.480042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.676941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.609863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.017975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.062469] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.414551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.752441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.288116] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 405.468323] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.318481] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.051605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.929657] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.633026] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.145111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.605927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.985901] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.347321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.529175] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.046753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.392242] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.261536] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.954254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 431.154816] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.518951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.698914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.232605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.032196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.058075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.926178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.561462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.871033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 517.087708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.246826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.522949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.855896] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 567.327820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 580.738953] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.990601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.685791] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.674683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.199768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.294861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.116394] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.056396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.640137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.571289] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.926208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.525818] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.887451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.313110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.549683] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.598083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.653625] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.546753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.181396] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.659241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.617676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.533875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.421509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.443359] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.524475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.451294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 975.624573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 988.439514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.260498] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.174072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.182007] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.844482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.573975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.678833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.836304] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1102.002441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.494019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.370605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.342407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1144.834229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.790161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.979370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.667603] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.955566] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.922729] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1206.543823] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.549072] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.116943] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.054321] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.974243] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.574341] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.306396] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.372681] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.992676] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.565063] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.412231] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.721924] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.880493] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.438354] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1318.309326] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.068481] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.502930] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.518555] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1343.311401] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.875000] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.487183] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.411255] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.689453] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.773315] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.921753] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1376.725952] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.708130] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1382.913940] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1385.377441] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1387.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.955933] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.270508] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.280640] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.791260] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.933594] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.677368] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.962891] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1389.775391] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1388.253784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.339600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.142578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.452148] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1378.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1374.337280] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.316528] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.753784] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.614014] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.311279] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.898682] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1344.270508] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1337.432373] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1331.342163] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.441650] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.167725] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.471436] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.365234] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.975830] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.961060] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.220703] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.168579] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.562622] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.123657] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.057373] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.473022] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1220.032227] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.527954] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.280518] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1187.440430] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.242798] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.039917] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.486938] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1141.352783] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.529541] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.600586] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.377319] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.173340] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.995239] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.965210] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.008057] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.164551] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.654419] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.615356] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.883240] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.083923] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.437866] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.365540] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.835938] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.240112] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.958923] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 864.664795] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.705078] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.119019] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.933228] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.155396] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.528992] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.131104] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.426941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.597778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.669312] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.925110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.117249] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.769531] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.407898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 594.878845] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.830200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.293213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.882568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.315613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 500.353851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 482.483185] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 463.638367] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.131439] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 429.922180] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.674927] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.663940] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.470093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.892487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.629303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.466064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.873749] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.679962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.416779] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.187653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.674103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.072540] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 272.307831] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.448151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.744812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.371155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.394867] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 265.570068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.761322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.841461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.570923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.378571] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.397369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.933472] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.301758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.483490] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.839447] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.243500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.124237] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.435608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.496155] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.061890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.489075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.454956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.150269] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 424.855255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 438.344788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.045349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.927643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.301025] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.932159] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.022705] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.208130] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.707703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.021912] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 566.873840] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.714905] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.970642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 609.848083] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.322693] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 638.950989] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 654.088440] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 668.145020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.515686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.207764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.925232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.217834] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.699341] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.007446] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.429626] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.295227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 801.097412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.627686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.343933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.872437] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 857.149414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.537964] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.945251] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.421692] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.208313] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.069092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.016907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.695190] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.477173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.134033] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.195618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.826294] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.281677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.785645] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.484863] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.906372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.010620] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.826782] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.337036] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.833862] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.182007] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.896362] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1117.359253] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.984863] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1134.398315] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.205200] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.880493] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.799316] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.463013] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.608398] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.487671] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.216797] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1192.495483] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1198.573608] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.676392] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.422241] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.892090] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.248047] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.268311] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.016357] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.628784] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.026001] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1243.976196] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1247.871338] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.240479] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.404785] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.313110] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.802124] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.961182] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.593994] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.178833] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.421021] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.345215] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.996582] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.259521] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.136841] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.591431] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.726563] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.574341] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.141968] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1262.223022] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1260.007813] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.809204] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1254.909790] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.677979] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.290771] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.599365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.697998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.410767] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.778931] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1226.497925] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1221.032104] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.121948] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.885620] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.713013] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1196.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.013062] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.611938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.089355] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.286255] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.832764] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.569214] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1140.631714] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1130.872681] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.211792] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.819946] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.919434] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.396362] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1079.105835] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.853394] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.495117] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.315796] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.034058] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.425537] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.427734] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.665771] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.133423] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.977295] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.953796] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.318298] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.481567] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.500000] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.684998] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.156128] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.485229] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.248596] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.409546] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.945984] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 797.716553] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.608521] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.513306] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.448669] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.162476] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.100525] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.448059] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.450317] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.740112] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 637.206604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.713928] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 600.267273] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.176086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 563.282593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.940369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 528.233398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.255310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.739929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.067902] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 455.416565] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.778961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.524933] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 401.949463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.314606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.545013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.280762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 334.614044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.668243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.212677] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.938019] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.696533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.976349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 256.803528] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.617416] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 236.521515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.199020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.338699] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.839310] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.593826] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 201.355515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.005493] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.716049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.220352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.470764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.717331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 188.818512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.746017] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.633072] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.307465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.905685] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.321075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.444382] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.399628] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 218.780106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.625488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 232.891281] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 240.901352] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.395554] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.831879] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.582703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.419434] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.304108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.239410] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 315.067139] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.206909] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 339.618652] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.228516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.781250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.445618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.835419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.428619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.753174] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.841980] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.993073] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 466.617218] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 481.271088] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.392120] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 510.973969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.207703] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.531006] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.784607] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.351501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.877319] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.430847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 613.002563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.315613] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.438232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.374878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.677856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.532593] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.745911] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.151062] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.151428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.679016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.315735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.519592] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.260193] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.872009] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 804.352173] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.786255] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.066040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.809509] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.321045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.257629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.494873] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.968506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.659546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.028259] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 923.992859] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.437500] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.294250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.646667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.106689] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.510681] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.590393] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.544983] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.847290] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.814514] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.649963] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.095703] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.574707] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.514771] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.182739] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.042603] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.529541] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1076.625244] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1083.871948] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.579834] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.728882] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.083252] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.124756] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.841919] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1121.510010] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.054565] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1132.371216] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.590454] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.922363] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1147.979736] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.368408] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.741455] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.949707] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.157959] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.877075] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.748291] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.205200] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.459839] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.220215] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.542480] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.485596] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.005249] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.151978] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.907593] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1181.240479] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.162842] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.686768] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.750244] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1174.365967] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1171.845825] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.710327] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.644653] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.679565] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.262939] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1152.494751] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.067139] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.285645] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.080078] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.321167] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.873901] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.717651] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1111.383057] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.567261] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.086182] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1088.416382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.140747] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.910400] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.527100] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.854370] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1034.744019] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.511597] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.857910] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.613831] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.569580] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.022095] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.647827] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.583618] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.273315] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.283020] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.179199] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.823425] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.292358] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.935364] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.384460] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.622620] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.876160] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 815.827393] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.903503] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.714294] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.294495] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.959167] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.534363] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.100891] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 699.396790] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.703857] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.906860] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.527222] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.879761] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.072571] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.164917] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.235107] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 532.517273] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.404968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.957306] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.402679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.235046] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.708740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.793762] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.067719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.021667] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 364.847321] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 345.509552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.543610] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 308.477600] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.232605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.848358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.623627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.140015] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 225.810471] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 209.614136] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 193.374939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.659409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.154297] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.954208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.480545] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.858482] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 122.157272] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:0.000001] [Flaps: 0.000000] [Data Ref: 14.150362] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150358] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150322] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150239] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150187] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150321] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150564] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150868] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150463] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150228] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150406] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150675] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151883] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151945] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151555] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.151190] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150220] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149994] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149751] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146585] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143970] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.140157] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.135596] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.130583] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.125668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.121572] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.117933] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.115013] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.112377] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.110676] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108207] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.107755] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.108101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.109319] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.111379] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.113878] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.116549] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.119136] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.122101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.124948] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.128140] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.131660] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.134823] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.138282] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.141268] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.143615] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.145536] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146668] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.146977] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.147283] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148059] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.148840] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149101] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149069] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149270] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149486] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.149920] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.150820] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.152290] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.153417] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.154469] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.155663] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.156863] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.157851] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.158559] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.159333] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.160367] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.161507] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.163505] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.164975] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.165806] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166176] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166496] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167118] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167689] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168167] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168574] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168589] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168759] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.168459] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167990] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167097] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166909] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.166881] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.167592] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.169074] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.170978] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.172696] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.174131] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.175848] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.177142] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.178159] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.179123] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.180058] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181182] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.181964] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182357] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.182659] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183054] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183378] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183599] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183488] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.183891] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.185351] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187408] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189251] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189560] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.188587] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187383] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186607] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.186608] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.187389] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189060] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.191274] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.193576] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.194716] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192300] [T/O: true ][Cruise: false ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.190042] [T/O: true ][Cruise: false ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.189542] [T/O: true ][Cruise: false ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.192101] [T/O: true ][Cruise: false ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.195215] [T/O: true ][Cruise: false ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.199267] [T/O: true ][Cruise: false ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.202621] [T/O: true ][Cruise: false ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.205692] [T/O: true ][Cruise: false ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.208219] [T/O: true ][Cruise: false ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.209660] [T/O: true ][Cruise: false ] +[Elevator: 0.090000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.211040] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: -0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.212043] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.213134] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.214898] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.216191] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.217842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.219599] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.220757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.221649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.222878] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.224577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.226032] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.227902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.229781] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.232435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.235017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.238413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.239064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.243039] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.244708] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.248577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.251565] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.256633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.261666] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.269017] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.277295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.284800] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.296814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.308266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.325600] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.335583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.366691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.373505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.418431] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.426617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.494806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.506737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.596842] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.614889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.717158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.743242] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.890738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 14.915012] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.055384] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.080963] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.238129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.267727] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.471846] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.508410] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.738979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.777180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 15.986302] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.073183] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.315945] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.368010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.669577] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 16.720694] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.091612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.153965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.490067] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.566038] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 17.944876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.003830] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.456984] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.541277] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 18.984354] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.079943] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.661436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 19.749949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.353853] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 20.449942] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.124889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.250847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 21.999784] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.132248] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 22.946737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.084520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 23.955965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 24.099333] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.041162] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 25.205074] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.040266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 26.225168] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.305658] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 27.481762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.492144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 28.655268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.653660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 29.856728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 30.898605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 31.080093] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.156586] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 32.394505] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 33.818180] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 34.041210] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.227970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 35.466213] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.708458] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 36.949070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.537502] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 38.814098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.485695] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 40.779934] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.274281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 42.583096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.059521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 44.336617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.184650] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 46.495579] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.254227] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 48.609352] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.333145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 50.662064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.782253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.122826] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.293556] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 55.639614] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.043724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.422359] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.868427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 61.259163] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.191486] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.597805] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.027725] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 66.371025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 68.969269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.381775] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.094254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.550278] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.335709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 75.782303] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.075020] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 78.564507] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.588669] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 81.047890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 83.503738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 84.001709] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 86.510391] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.039009] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.568527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 90.603683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 92.631042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 93.710899] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 95.878250] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 96.948883] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.243622] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 100.445580] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.680336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.779366] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.334869] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 106.830933] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.656494] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 110.239754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 112.990150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 113.481445] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.288010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 116.903015] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 119.898232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.534996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 123.812447] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.409042] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.062439] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 128.713959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 131.726501] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.290512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 135.111389] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.246170] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 138.506866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 140.197266] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.008392] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 143.732193] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 146.072281] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 147.177521] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.553665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 150.684280] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.115921] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 154.949432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 156.638184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 158.353424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 160.204239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 162.031738] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.672760] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.337723] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 167.208786] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 168.997849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 171.415939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 173.280014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 175.759903] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.713867] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 179.401520] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.116989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 183.046432] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 185.592926] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 187.598007] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 189.565887] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 191.542816] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.124939] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.760468] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.289001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 200.192993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.755325] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 204.815979] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 206.473724] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.873810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.599319] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 212.364136] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.829346] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 216.707184] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.359756] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.517868] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.376633] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.981293] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 227.056885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.194046] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.107239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.715103] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 234.593964] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 235.153275] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.604263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.131912] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.698044] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.387970] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 246.712097] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 247.266876] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.422318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 251.629745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.937546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 255.085129] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.493744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.301941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.042419] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.538757] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 264.721954] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.228027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 267.794159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.598328] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.047852] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.613922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 270.613922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 271.669189] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.303040] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 273.902008] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 274.430908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 275.502686] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.039154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.039154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.607422] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.137848] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.676025] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.533630] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.080475] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.556732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.032806] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.685822] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.270752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.910217] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 285.476715] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.063660] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.500641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.966309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.385437] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.871399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 288.871399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.520966] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.819122] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.226990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 294.226990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.158478] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 296.653961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.130890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.093872] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.481415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.415558] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.857971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.288483] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 300.723999] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.247528] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 301.773376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.236755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.236755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.729218] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.205750] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.666229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 303.666229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 304.133850] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 307.810028] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.476288] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 313.360657] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.280884] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 318.800720] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.599457] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.302856] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 326.919647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.306396] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 331.523834] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 333.830719] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 335.884094] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.171112] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 340.171326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.290253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 344.439331] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.350647] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 348.245239] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 350.006409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.864990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 353.750793] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.483368] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 357.154053] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 358.772430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.320435] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.546051] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 363.926056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 365.351379] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 366.668762] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.950897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 368.988617] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.105164] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 371.139740] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 372.131195] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.042358] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 373.906982] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 374.721680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 375.510651] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.352875] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.060394] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.799835] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.435181] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.044525] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.583801] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.147766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 380.605621] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.038849] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.479645] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.897736] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.256989] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.595459] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.917847] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.200897] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.446533] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.774567] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 383.976013] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.159546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.314636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.427307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.523010] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.606415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.675232] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.732971] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.792542] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.844452] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.893951] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 384.944336] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.003754] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.077332] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.171936] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.272064] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.382233] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.524628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.675415] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.852905] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.059418] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.302063] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.566772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.835236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.170929] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.496185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.901855] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.340790] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 388.784027] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.312744] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 389.920166] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.584412] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.225952] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.956543] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.745361] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.561401] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 394.437500] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 395.381073] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.332642] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 397.353424] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.456268] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.636322] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.903900] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 402.176270] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.457092] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.857269] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.224030] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 407.671204] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 409.137115] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.722626] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.464417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 414.179810] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.843048] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.614685] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 419.543671] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.567688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 423.463593] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.785828] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.069061] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 430.294678] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 432.766785] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.353607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.754608] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 440.163147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.914490] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 445.766327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.485870] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 451.204620] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 454.174866] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 456.948120] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.927399] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 462.624664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 465.624146] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 468.489990] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 471.606476] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.576080] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 477.397827] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 480.601959] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 483.622772] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 486.712646] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.040375] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.215607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.414673] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.895874] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 503.365692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.390167] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.691254] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.831055] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 516.947021] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 520.423889] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.024841] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.597473] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.641968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.227722] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 537.767334] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.119263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.418335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 547.988159] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 551.539429] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 554.802002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.177795] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.819397] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 565.418335] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 569.049438] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.863403] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 576.193237] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 579.774902] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.040161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.472229] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.626831] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 592.720154] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.564697] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.837158] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.854187] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.231079] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 608.649780] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 611.862732] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 615.275085] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 618.682983] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.853271] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 624.951965] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.931274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.714294] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.722107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.589661] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.696777] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 642.686096] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 645.495605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.347961] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 650.988892] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 653.817749] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.554077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.904236] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 661.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 664.199890] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 666.790527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 669.359436] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.640259] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 674.235535] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 676.607910] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 679.033386] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 681.335144] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 683.502014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 685.783752] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.234863] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 690.429993] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 692.759583] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.743774] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 696.590820] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 698.391968] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.140076] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.081177] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.742310] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.404175] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.213745] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 708.759766] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 710.171997] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 711.753601] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 713.105896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 714.500305] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.822083] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 717.002014] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.325684] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 719.477417] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.689941] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 721.842896] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 722.922607] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 723.974487] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.027527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.013672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.889282] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 727.703674] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 728.537292] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.306274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 729.982605] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.677734] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 731.338257] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.001099] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.643066] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.254150] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.862244] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.468811] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.985718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 735.576172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.164307] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.721680] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.271362] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 737.773987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.244202] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.776001] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.232544] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 739.651245] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.087036] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.529297] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 740.933655] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.367371] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 741.790161] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.244263] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 742.697205] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.106262] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 743.574829] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.021851] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.533264] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.055908] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.559692] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.510000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.079590] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.610718] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.203430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.771484] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.374512] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.968140] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 749.630737] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.306641] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.973145] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 751.754761] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.540649] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.222717] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 753.990906] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 754.772095] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 755.628052] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 756.552551] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 757.468628] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 758.301636] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 759.268860] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 760.195496] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.187683] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.185364] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.217712] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.319885] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.551147] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.686157] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.921082] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 769.178711] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 770.513672] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 771.995911] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 773.357056] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.895996] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.309814] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.790466] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.405640] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.973755] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.761536] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.871338] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.835327] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.457825] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.487549] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.381226] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.471313] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.509949] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.672119] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.931274] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.210388] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.260803] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.341309] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 809.678955] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.895691] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.289185] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.588318] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.112427] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.633728] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 824.076172] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.268127] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.927002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.644409] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.554077] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.328430] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.868652] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.610107] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.226440] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.352295] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.941467] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 853.790527] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.610413] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.150000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.485474] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.140000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.726807] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.130000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 865.413513] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.120000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 868.144104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.110000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.102356] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.990662] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.090000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.673584] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.080000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 879.558594] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.070000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.756104] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.060000] [Yaw: 0.480000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.417664] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.050000] [Yaw: 0.450000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.267029] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.040000] [Yaw: 0.420000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.479980] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.030000] [Yaw: 0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 894.573059] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.020000] [Yaw: 0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.628235] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.010000] [Yaw: 0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.497253] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: 0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.434326] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: 0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.531433] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: 0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.830383] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: 0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.997070] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: 0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.390564] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: 0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.797546] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: 0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.652588] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: 0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 925.684387] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: 0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.552612] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: 0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.869385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.000000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 934.648376] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 937.736206] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.432922] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.223022] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.867004] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.501587] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 951.554688] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 954.600098] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.253845] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.000610] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.150000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.577637] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.140000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.309570] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.130000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.934631] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.120000] [Yaw: -0.390000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.734985] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.360000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.656616] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.100000] [Yaw: -0.330000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.567566] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.090000] [Yaw: -0.300000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.132385] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.080000] [Yaw: -0.270000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.693665] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.070000] [Yaw: -0.240000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.315002] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.060000] [Yaw: -0.210000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.773987] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.050000] [Yaw: -0.180000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.494751] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.040000] [Yaw: -0.150000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.811523] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.030000] [Yaw: -0.120000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 994.154541] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.020000] [Yaw: -0.090000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.653381] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: -0.010000] [Yaw: -0.060000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.108582] [T/O: true ][Cruise: false ] +[Elevator: 0.110000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1001.402954] [T/O: true ][Cruise: false ] +[Elevator: 0.100000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.567261] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.895203] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.817749] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.134644] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.438599] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.733765] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.896790] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.032959] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.012451] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.080811] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.253662] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.061279] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.889404] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.692871] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.287476] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.871338] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.405884] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.968018] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.441162] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.968994] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.313232] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1047.565308] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.642944] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.790894] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.931519] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.873413] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.746582] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.598267] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.332153] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.053101] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.634399] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.040527] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.406616] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.606934] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.699463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.677246] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.533936] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.285156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.899414] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.389526] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.729980] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.975220] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.062012] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.919189] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1050.815063] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1049.505005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.108154] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.566406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1044.901978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.347046] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1041.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1039.418945] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.260986] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.108521] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.795166] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.297974] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.639160] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.590698] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1021.653137] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1018.671387] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.807556] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1012.318176] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.405701] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.261108] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.999329] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.668213] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 995.404846] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.568359] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.947388] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.393250] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.435913] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.335510] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.858337] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.810303] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 964.834229] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.746277] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 956.695435] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 952.669006] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.377258] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.000549] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.714966] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.633972] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.241455] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.425232] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.390991] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.604431] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 917.081238] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 913.809265] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.535828] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.019897] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 903.815796] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 900.745605] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.370178] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.772217] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.578369] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.739807] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.029053] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.565552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.453064] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.469971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.765076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.391235] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.302551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 885.560425] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.133728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 887.046387] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.254700] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.676514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.414551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.433105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 895.777466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.325012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 901.236084] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 904.176941] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.667114] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.410889] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 915.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.642090] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 924.078369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.436646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.624512] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.320862] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.687256] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.137024] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 959.450317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.320679] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.650146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 981.294739] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.354736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.408691] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1005.246521] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.759644] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1028.835205] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.622803] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1045.812134] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.378418] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.046997] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.943848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.848145] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.499146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.930664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1110.226929] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1119.387085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.385254] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.654541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.163208] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.090820] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.987427] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.284180] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1186.119141] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1195.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1203.703247] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.287354] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1219.557251] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1227.219482] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.475220] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1242.999023] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.765747] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.698486] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.528320] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.268066] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1282.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1291.484619] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1298.782349] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1307.098633] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1314.656372] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1321.440063] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1328.120239] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.904541] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.112427] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.233398] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.145020] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.541138] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.906128] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1370.613770] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.979126] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.248413] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.099976] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1390.705200] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1395.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.305786] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.507568] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.681274] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.781006] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.349365] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1418.902222] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1422.312134] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.827393] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.041382] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1435.001465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.228760] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.427368] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.395020] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.177490] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.224487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1446.984375] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.541626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1449.821411] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.863281] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.706421] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.547607] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.979980] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.175537] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.170898] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.958252] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1452.540283] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.932007] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.089844] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1450.064453] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.856567] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1447.250854] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.506958] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.637085] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.488159] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1439.138306] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1436.342529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1433.645630] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1430.688477] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.539429] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.708130] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.769287] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1415.699463] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.390869] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1406.634033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1401.895752] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1397.210938] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1391.973633] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.786621] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1381.320801] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1375.506592] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.345581] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.910156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1356.273926] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.916626] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.867310] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.504761] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1327.945557] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.353149] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.041260] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.609985] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.620728] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1283.898438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.528809] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.554199] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.948853] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.011841] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1236.309082] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1225.935181] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.449951] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.081177] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1194.288696] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.358398] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.134399] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.704834] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.243652] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.517456] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.222290] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.459717] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1101.348022] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.360596] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.245605] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1065.062012] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.000122] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.693604] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.229126] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.918091] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1007.922119] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.280518] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 984.452454] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.873474] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.184814] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 950.987976] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.289795] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.483032] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.431458] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 908.154053] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.739441] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.211121] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.781067] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.296082] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 859.382385] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.865112] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 842.666077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 835.033569] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 827.358093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 820.184631] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.423584] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.533630] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.608643] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 795.694397] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 790.834106] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 786.752991] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.384094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 780.395508] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.081848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 776.358948] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.301575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.849915] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 774.984070] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.767456] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.202332] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.316956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.328796] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 785.199707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.765442] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 794.556335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 799.790039] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.874817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.214783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.054016] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.318726] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.741821] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 841.563477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 850.607971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.470276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.873413] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 881.974854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.681030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.160461] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.703674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.942566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.555664] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.903137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 966.098999] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 978.452820] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.677673] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.527283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.920105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.208618] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.788086] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1056.255981] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.937012] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.463745] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.494507] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1112.487549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.286987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.659668] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1157.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.490601] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.847412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1204.150757] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.214722] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.391846] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.191772] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1251.105713] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.393311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.254517] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.865479] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1294.819946] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.546265] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.548462] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1325.907715] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1335.640015] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.570435] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1355.125488] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.459595] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.628296] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1383.424805] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.629883] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1403.406372] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.241333] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1420.597900] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1429.179443] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.002441] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1444.649292] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.132935] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.522339] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1467.733398] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1474.477173] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.216553] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1488.173828] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1494.293335] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1500.119995] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.989746] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1512.105957] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1521.093506] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1528.144409] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1533.673828] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1539.841187] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1544.633179] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1549.833618] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1554.575928] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1559.639282] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1564.060181] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1568.821777] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.745361] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1576.475830] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1580.040161] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1583.164307] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1586.271240] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.079468] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1591.883911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1594.492920] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1597.124268] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1599.349487] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1601.213379] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.837402] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.960571] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1604.967285] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.945679] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.914673] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1605.530151] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1604.841675] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1603.526978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1602.020264] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1600.208740] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1598.039551] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1595.534668] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1592.667603] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1589.352661] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1585.534546] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1581.843506] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1577.546265] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1572.917847] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1567.677002] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1562.663208] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1557.674316] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1552.356079] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1546.792358] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1540.853760] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1534.454834] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1527.442993] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1520.642578] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1513.190918] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1505.274780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1497.702881] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1489.965698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1481.469116] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1472.444702] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.746460] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.752319] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1443.568481] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.092529] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1419.913696] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1407.958618] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1396.009033] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1384.088501] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1373.078125] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1359.676392] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.858643] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1333.744507] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1319.940796] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1305.433594] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.358887] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1278.791382] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1263.590088] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1248.040161] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.289551] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.551147] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1200.307251] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.274658] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.617188] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.550293] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.103638] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.229370] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1098.435669] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.289063] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1061.998169] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1024.318604] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.355530] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 987.749023] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 968.561768] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 947.903015] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.318420] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.856384] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 890.154663] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.822449] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 848.754700] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.014526] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.835938] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 789.172607] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.188171] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.016418] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.494141] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.798706] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.308533] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.353516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.073914] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 630.434753] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.035034] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 598.315735] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.765381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.716492] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.396240] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.392029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 534.089417] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 523.556274] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 514.487488] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.444092] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 501.814148] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 496.934052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 494.159637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.695770] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.609741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.705597] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 495.902405] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.862335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 504.594177] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 511.215271] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 518.681335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.876892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 536.203552] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 546.762268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.708984] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.749939] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 583.210754] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 597.723877] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.626160] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 626.975464] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 641.936951] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.314392] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.540161] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.341248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.580078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.218384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.387146] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.029968] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.117004] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 777.073792] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.990051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 806.098389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 821.389526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 837.175842] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.647827] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.088074] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.543640] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.902893] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 914.280701] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 928.690369] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 945.068115] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 960.720398] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.038330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.816833] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1006.153503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.721680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1038.762817] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.607666] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.837646] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.800293] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.362061] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.613403] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1122.465576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.703003] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.872192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.677856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.393799] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.479370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1197.476196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1210.642578] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.282959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.523682] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.380005] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1258.855835] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.389771] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1280.863770] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.294312] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1302.453369] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1312.192993] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1320.661255] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.613159] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1338.773193] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1348.453247] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.003174] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.737671] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1372.306763] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1379.335815] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.375977] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1392.905518] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1399.211670] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.320557] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1411.188721] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1416.421387] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1421.192627] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1425.822876] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.215454] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1440.788940] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.213623] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.597046] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.493164] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.975220] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.143066] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.151245] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1459.888062] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.158203] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.256592] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.002808] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.474854] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.684326] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.573486] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1463.140137] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1462.390015] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1461.352295] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1460.047729] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1458.258911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1456.160156] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1453.884399] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1451.074585] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1448.154419] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1445.244507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1441.471924] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1437.366333] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1432.812744] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1427.941162] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1423.078613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1417.765869] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1412.036987] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1405.869263] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1400.154541] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1393.400879] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1386.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1377.327271] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.692627] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.777344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1352.265625] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1332.510010] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.059937] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1311.848755] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.052490] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1290.463501] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1279.860596] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.653564] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1256.827026] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.980103] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1232.252441] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1218.853638] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1205.849976] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.807373] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.594849] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1146.719116] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1131.021484] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.593018] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1100.030396] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.780518] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.999023] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.365723] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.047729] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.821899] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 996.650879] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 980.736694] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.020386] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.990601] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.532776] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 907.487427] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.319946] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.191956] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 847.833801] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.556091] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 808.382141] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.332458] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 766.317017] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 745.679626] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 724.506409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 703.504944] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.376526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.750671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 643.991516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 625.307068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.317261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 581.292358] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 561.728577] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.667786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.877502] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.294586] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 488.952393] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.563629] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.821075] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 446.306366] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 434.008606] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.736969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 413.245239] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 404.210815] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 396.659576] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.322632] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 385.490448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 381.815430] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.212189] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.984894] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.109283] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.528168] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.253052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 386.249878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 391.923737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.862885] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 406.477814] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 415.153076] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 425.770081] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 437.282104] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 450.175812] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.177551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 478.593475] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.792969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.772949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 525.890991] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 541.662109] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 557.866760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 573.179077] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 589.574463] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.589539] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.103027] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.196899] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 658.438660] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 673.686462] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.515503] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.720215] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.362183] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.828674] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.726196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 765.214233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 781.754211] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.024414] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 811.314575] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 826.001892] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 839.800049] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.068970] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 869.642395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.121887] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 897.398987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.937805] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 926.128967] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 939.480103] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.009766] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 970.835327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.755066] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.457153] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.045959] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.920044] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.542480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.567627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.982910] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.052734] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.507568] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1105.177246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1116.875977] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1129.610229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.205566] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.637451] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.787231] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.218750] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1189.163330] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.000977] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1211.212402] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.521240] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1231.594604] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1240.684692] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1250.427734] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1259.953247] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1268.317749] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1276.530518] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1285.142578] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.687622] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1300.397339] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1308.217529] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1315.634521] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1322.146851] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1329.125000] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1334.956909] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1340.348877] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1345.354858] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1349.427246] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1353.151733] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1357.006104] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1360.190186] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1362.603882] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1364.918457] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1366.824951] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.206421] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.252319] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.714722] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.784546] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1369.485352] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1368.766724] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1367.540283] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1365.958740] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1363.967041] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1361.344849] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1358.125122] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1354.186890] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1350.089722] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1346.328613] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1342.084961] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1336.515503] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1330.677124] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1324.207520] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1317.174072] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1309.544556] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1301.197998] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1292.619629] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1284.655884] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.273438] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1265.669189] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1255.698608] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1246.268799] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1235.449829] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1224.057129] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1213.625732] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1202.372803] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1191.449463] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1179.290283] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1166.575684] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1153.467529] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.589478] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1125.840454] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1109.994385] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.610474] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1081.854370] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1066.808350] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1051.635132] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1035.614258] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.563843] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.829285] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.001404] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 967.686707] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.616150] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 930.794556] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.437073] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 892.838684] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 874.201050] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 854.875549] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.174927] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 813.549622] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 791.138062] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.047424] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 746.613586] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.362732] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.373413] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 684.160095] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 662.303894] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.980164] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 621.029419] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 599.810974] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.532349] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.088196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 533.450684] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 513.095032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 493.699890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 472.375671] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.346619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 433.636108] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 416.117737] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.401642] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.752014] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.143616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 351.808441] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 338.844330] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 327.611786] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.648346] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.961639] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 298.958923] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 292.261078] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 286.364105] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 281.995117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 279.091736] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.551453] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.340424] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.537476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.841370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 284.482300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 289.411987] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.251038] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 302.368164] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.181946] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 321.501282] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.296051] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 343.650787] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 356.810913] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 369.470093] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.578094] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 398.087036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 412.828949] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.636261] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 444.099335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 459.294891] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.859222] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 492.365906] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 509.931335] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 529.136841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.560059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 562.149719] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 578.675110] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 595.028320] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 612.942627] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.365784] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 648.868347] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 665.752747] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 680.976196] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 700.270874] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 715.934448] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.655579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.211975] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 764.212708] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 779.534546] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 796.637207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 812.582336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 830.025085] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.870361] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 861.053284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 876.249756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 891.459717] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 905.399841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 918.959412] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.199890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.289246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.441650] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.801331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.706848] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1003.190002] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1015.702881] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.607178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.830322] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.462036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.342651] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.806519] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1086.416138] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.774292] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1108.057983] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1118.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.621948] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.179565] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1149.872925] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.366821] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1167.679565] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1176.437500] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.548828] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.706299] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.285278] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1209.331543] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1216.705200] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1223.608032] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1229.608276] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.936279] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.617798] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.494629] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.336548] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.943970] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.797607] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.198853] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.497437] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1267.015015] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.099365] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1270.873169] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.489502] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.720825] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.553345] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.050659] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.229004] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1275.068481] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1274.575073] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1273.823853] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1272.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1271.181885] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1269.132324] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1266.826172] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1264.184448] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1261.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1257.447510] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1253.541870] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1249.389893] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1244.758545] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1239.401978] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1234.000488] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1228.628052] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1222.218384] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1215.455566] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1208.502808] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1201.634888] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1193.727539] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.925415] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.856445] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1170.353760] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1161.341187] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.866699] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1137.858398] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1124.747070] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1114.074707] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1103.003906] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1092.101196] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.563110] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1068.889038] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1055.253052] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.601807] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.780640] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.063660] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.166992] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 990.911682] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 976.206665] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 961.449158] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 946.614380] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.836609] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 916.576660] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.990234] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 883.886414] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 866.769043] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.684631] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 834.362732] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.740051] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.072632] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 782.190247] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 762.966187] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 744.117859] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 726.629089] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 707.942688] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 688.280945] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 667.540833] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.144775] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 627.460571] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.230896] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 585.812561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.688232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 544.000793] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 526.751465] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 506.458954] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.514526] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.583740] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 448.060730] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.628723] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.059875] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 387.788147] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 367.892029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 349.338623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 332.448883] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 316.102020] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.657227] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 283.266449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 268.437317] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 253.238220] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 242.209641] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 231.168121] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 222.699295] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 215.466339] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.754501] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.678741] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.842743] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.205032] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.857117] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 195.773514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 197.048248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 199.358292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 203.006851] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 208.125809] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 213.839783] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 221.120514] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 230.354050] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.744476] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 250.917480] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 263.069336] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 276.059052] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 290.864838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 306.813751] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 324.742126] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 342.904663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 360.285248] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 377.195648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 393.779633] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 411.163300] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.463623] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.560181] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 458.621246] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 473.317505] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.495087] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.853241] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 524.810303] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 542.584778] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.620789] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 574.714111] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 590.939758] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 607.944580] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.173401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 640.065063] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 655.717041] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 672.246460] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 689.596497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 705.574707] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.158264] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 734.482178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 747.493774] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 761.526001] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.316040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 787.564331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 803.052551] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.746582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.215515] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 845.956299] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.741455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 873.555847] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 886.511841] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.041138] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 911.976379] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 927.215698] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 941.984253] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.732605] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 971.892212] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.231445] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 997.527771] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.335510] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.747314] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.843506] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1043.233887] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1054.449463] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1063.944702] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1072.266846] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.769531] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.132080] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1097.308960] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.781372] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1113.156860] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1120.394409] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1127.055054] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1133.949097] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1139.681519] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1145.725342] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1151.338867] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1156.363037] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1160.830200] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1164.827881] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1168.789917] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1172.160645] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1175.728271] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1178.572632] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.830811] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.782959] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1184.294678] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.389771] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.936890] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.840942] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1185.118164] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1183.944946] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1182.339355] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1180.054932] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1177.282471] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1173.658569] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1169.658691] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1165.022827] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1159.727905] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1154.168091] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1148.484009] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1142.643188] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1135.585083] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1128.755859] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1115.633667] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1104.431763] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.849731] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.849487] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.133423] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1058.806030] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.677368] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1037.467651] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.898315] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.675171] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1002.752197] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 989.686401] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 977.008911] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 962.854553] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.238586] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 935.177185] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 920.950623] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 906.086182] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 888.192200] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 870.235779] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 851.552734] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 833.938171] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 816.259155] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 800.550171] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 784.221069] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 768.592285] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.859253] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 730.802124] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.991760] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 694.752014] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 675.937805] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 657.122498] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 636.711487] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 616.008728] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.083740] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 575.639465] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 552.965637] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 530.822998] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 508.801300] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 485.911377] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 464.303467] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 443.048706] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 421.559265] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 399.693176] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 376.964355] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 355.051788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 320.011200] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 299.865082] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 280.514557] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.145233] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 239.689728] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 223.136856] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 207.559143] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 192.081497] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 177.597000] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.054764] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 153.135284] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.732407] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 132.140182] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.460861] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.822800] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.756165] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.149384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.052582] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 102.837654] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 103.133957] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 104.831795] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 107.735428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 111.878311] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 117.473907] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 124.690277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 133.066589] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 142.319443] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 152.903030] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 164.797409] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 178.851898] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 194.603516] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 210.232391] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 226.855194] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.387390] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 261.723541] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.043854] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 295.647675] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.631287] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.287384] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.034637] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.956268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 379.982178] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 400.293213] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 417.280487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 435.430969] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 452.813477] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 470.504059] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.942383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.262756] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.597107] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 540.148071] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.050598] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 572.778137] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 588.817383] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 605.782288] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 623.435608] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 639.265686] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 656.275208] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 671.362549] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.082031] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.006653] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.402466] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 732.969788] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.241882] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.459229] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.183838] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 792.156433] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 805.186890] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 818.831604] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 831.724243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 846.274780] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 860.234314] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.270386] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.596558] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 898.497131] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.963745] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.642883] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 933.169739] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 944.789795] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 955.873352] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.867126] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.626038] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.592346] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.234985] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.798889] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1009.192139] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.566589] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.209229] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.945190] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1040.689819] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1046.905151] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1052.209473] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1057.498291] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1062.414429] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1067.199829] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1071.503052] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1075.399048] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1078.956421] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1082.478516] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1085.364380] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.906250] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1090.141113] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.982300] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.467163] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.707764] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.578491] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.052612] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.210205] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1096.008301] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1095.442505] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1094.577271] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1093.313721] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1091.673096] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1089.495117] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1087.146606] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1084.328003] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1080.982178] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1077.402344] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1073.501465] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1069.072021] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1064.214600] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1059.121338] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1053.869507] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1048.805420] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1042.941406] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1036.703125] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1030.425903] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.473206] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1016.043640] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.090698] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1000.200989] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 992.094055] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 983.509094] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 974.080322] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 963.794495] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 953.299988] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 943.157593] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 932.600098] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 921.156433] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 909.208984] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 896.986084] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 884.131592] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 871.543091] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 858.526855] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.267944] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 829.483704] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.113525] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 798.666870] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 783.002625] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 767.978210] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 752.617004] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 736.508423] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 720.551270] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 704.427979] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 687.546387] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.908630] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.149353] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 633.182617] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 614.551086] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 596.605286] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 577.528992] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 558.347412] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 538.878906] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 519.826538] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 499.218506] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 479.925751] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 460.817474] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.646820] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 422.801117] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 403.424286] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 382.526428] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 361.161163] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 341.010040] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 319.982971] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 297.857056] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 278.511292] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 257.944305] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 238.070694] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 219.307648] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.947952] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 180.295029] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.714676] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.213318] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 134.321243] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 120.950455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 108.164192] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 97.038307] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 87.210449] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 77.991714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 69.878372] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 63.303768] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 58.500992] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 54.828663] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 52.253101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.268505] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 51.573097] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 53.328331] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 56.346561] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 60.211880] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 65.690506] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 72.403427] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 80.354744] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 89.937340] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 99.738487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 109.870209] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 121.420563] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 136.028961] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 149.963455] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 165.198395] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 181.786484] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 198.099487] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 214.413956] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 228.986450] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 243.732101] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 259.063232] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 277.044525] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 293.959381] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 311.087250] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 329.598389] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 346.443878] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 362.337036] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 378.889191] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 392.915680] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 410.743011] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 426.803619] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 442.191010] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 457.137207] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 474.203308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 490.387573] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 505.413055] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 522.295715] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 539.828308] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 555.326172] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 570.512268] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 586.460022] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.932068] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.393982] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 631.233276] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 647.134888] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 663.043579] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 678.299377] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 695.713013] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 712.348572] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 725.591370] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 738.248047] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 750.243042] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.031616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 775.884277] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 788.866760] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 802.018616] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 814.373962] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 828.798279] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 840.619446] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 852.971191] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 862.647461] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 872.631653] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 882.675415] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 893.225525] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 902.948364] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 912.919006] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 922.210022] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 931.410522] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 940.626892] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 949.124817] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.185791] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.384949] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 973.059082] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.554688] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 985.471741] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 991.093933] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.288940] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.792908] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1008.977600] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1013.041016] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1017.353699] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1020.417297] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1023.699280] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1026.363281] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.218140] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.566528] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1033.399902] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1032.727905] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1031.594604] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1029.941284] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1027.922607] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1025.496338] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1022.609863] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1019.120422] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1014.673706] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1010.519958] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 1004.997009] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 999.513000] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 993.497681] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 986.859802] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 979.676514] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 972.519043] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 965.081970] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 957.268005] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 948.649780] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 938.605347] [T/O: false ][Cruise: true ] +[Elevator: -0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 929.541565] [T/O: false ][Cruise: true ] +[Elevator: -0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 919.370850] [T/O: false ][Cruise: true ] +[Elevator: -0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 910.188354] [T/O: false ][Cruise: true ] +[Elevator: -0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 899.937805] [T/O: false ][Cruise: true ] +[Elevator: -0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 889.994934] [T/O: false ][Cruise: true ] +[Elevator: -0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 878.590820] [T/O: false ][Cruise: true ] +[Elevator: -0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 867.757996] [T/O: false ][Cruise: true ] +[Elevator: -0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 856.301758] [T/O: false ][Cruise: true ] +[Elevator: -0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 844.611633] [T/O: false ][Cruise: true ] +[Elevator: -0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 832.378296] [T/O: false ][Cruise: true ] +[Elevator: -0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 819.366333] [T/O: false ][Cruise: true ] +[Elevator: -0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 807.128845] [T/O: false ][Cruise: true ] +[Elevator: -0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 793.432007] [T/O: false ][Cruise: true ] +[Elevator: -0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 778.114441] [T/O: false ][Cruise: true ] +[Elevator: -0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 763.296448] [T/O: false ][Cruise: true ] +[Elevator: -0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 748.964294] [T/O: false ][Cruise: true ] +[Elevator: -0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 733.674194] [T/O: false ][Cruise: true ] +[Elevator: -0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 718.050415] [T/O: false ][Cruise: true ] +[Elevator: -0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 702.379028] [T/O: false ][Cruise: true ] +[Elevator: -0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 686.570007] [T/O: false ][Cruise: true ] +[Elevator: 0.000000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 670.549316] [T/O: false ][Cruise: true ] +[Elevator: 0.010000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 652.929810] [T/O: false ][Cruise: true ] +[Elevator: 0.020000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 635.469116] [T/O: false ][Cruise: true ] +[Elevator: 0.030000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 617.722351] [T/O: false ][Cruise: true ] +[Elevator: 0.040000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 601.051208] [T/O: false ][Cruise: true ] +[Elevator: 0.050000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 582.069153] [T/O: false ][Cruise: true ] +[Elevator: 0.060000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 564.496277] [T/O: false ][Cruise: true ] +[Elevator: 0.070000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 545.553955] [T/O: false ][Cruise: true ] +[Elevator: 0.080000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 527.326721] [T/O: false ][Cruise: true ] +[Elevator: 0.090000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 507.819122] [T/O: false ][Cruise: true ] +[Elevator: 0.100000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 487.323853] [T/O: false ][Cruise: true ] +[Elevator: 0.110000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 467.435394] [T/O: false ][Cruise: true ] +[Elevator: 0.120000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 447.792938] [T/O: false ][Cruise: true ] +[Elevator: 0.130000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 428.762512] [T/O: false ][Cruise: true ] +[Elevator: 0.140000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 408.798889] [T/O: false ][Cruise: true ] +[Elevator: 0.150000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 390.703278] [T/O: false ][Cruise: true ] +[Elevator: 0.160000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 370.992676] [T/O: false ][Cruise: true ] +[Elevator: 0.170000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 352.086060] [T/O: false ][Cruise: true ] +[Elevator: 0.180000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 330.924652] [T/O: false ][Cruise: true ] +[Elevator: 0.190000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 310.575714] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 291.843231] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 269.604401] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 248.196548] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 220.988129] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 202.627151] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 182.488327] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: 0.000000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.010000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.020000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.030000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.040000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.050000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.060000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.070000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.080000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.090000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.100000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.110000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.120000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.130000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.140000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.150000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] +[Elevator: 0.200000] [Roll: -0.160000] [Yaw: -0.030000] [Throttle:1.000000] [Flaps: 0.000000] [Data Ref: 163.724045] [T/O: false ][Cruise: true ] diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/ProjectModels.iml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/ProjectModels.iml new file mode 100644 index 0000000..10cb84f --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/ProjectModels.iml @@ -0,0 +1,16 @@ + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/Screen.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/Screen.java new file mode 100644 index 0000000..73c6418 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/Screen.java @@ -0,0 +1,13 @@ +package Visualizer; + +import javax.swing.*; +import java.awt.*; + +public class Screen extends JPanel { + + + public Screen(LayoutManager l) { + this.setLayout(l); + this.setVisible(true); + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenFrame.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenFrame.java new file mode 100644 index 0000000..f47f1f2 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenFrame.java @@ -0,0 +1,22 @@ +package Visualizer; + +import javax.script.ScriptEngine; +import javax.swing.*; +import java.awt.*; + +public class ScreenFrame extends JFrame { + + ScreenManager sm; + + public ScreenFrame(ScreenManager sm, Dimension d) { + this.sm = sm; + this.setPreferredSize(d); + } + + public void initialize() { + this.setVisible(true); + this.setFocusable(true); + this.add(sm); + this.pack(); + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenManager.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenManager.java new file mode 100644 index 0000000..c93de15 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenManager.java @@ -0,0 +1,64 @@ +package Visualizer; + +import javax.swing.*; +import javax.swing.border.Border; +import java.awt.*; + +public class ScreenManager extends JPanel { + + + JPanel display = new JPanel(new BorderLayout()); + Screen[] screens = new Screen[2]; + + ScreenType currentScreen; + + JButton toggle = new JButton(); + + + public ScreenManager(Screen start, Screen data) { + super(new BorderLayout()); + this.setVisible(true); + screens[0] = start; + screens[1] = data; + + toggle.setVisible(true); + toggle.addActionListener(e -> { + if (currentScreen == ScreenType.START) { + switchScreens(ScreenType.DATA); + } else { + switchScreens(ScreenType.START); + } + + }); + this.add(toggle, BorderLayout.WEST); + currentScreen = ScreenType.START; + display.add(screens[0]); + this.add(display, BorderLayout.CENTER); + display.setBackground(Color.black); + } + + public void switchScreens(ScreenType st) { + display.removeAll(); + switch(st) { + case START: + System.out.println("Switch to start"); + display.add(screens[0],BorderLayout.CENTER); + currentScreen = ScreenType.START; + display.repaint(); + revalidate(); + break; + case DATA: + System.out.println("Switch to data"); + display.add(screens[1],BorderLayout.CENTER); + currentScreen = ScreenType.DATA; + display.repaint(); + revalidate(); + break; + } + + } + + + + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenType.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenType.java new file mode 100644 index 0000000..3abece7 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/ScreenType.java @@ -0,0 +1,6 @@ +package Visualizer; + +public enum ScreenType { + START, + DATA +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/StartScreen.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/StartScreen.java new file mode 100644 index 0000000..532e60b --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/StartScreen.java @@ -0,0 +1,15 @@ +package Visualizer; + +import javax.swing.*; + +public class StartScreen extends JPanel { + + public StartScreen() { + JLabel l = new JLabel(); + l.setText("Hello"); + l.setVisible(true); + this.add(l); + } + + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Rudder Pedals.png b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Rudder Pedals.png new file mode 100644 index 0000000..0db4762 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Rudder Pedals.png differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Yoke Symbol.png b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Yoke Symbol.png new file mode 100644 index 0000000..cc7e4c9 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/assets/Yoke Symbol.png differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/axis.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/axis.java new file mode 100644 index 0000000..6b252a8 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/axis.java @@ -0,0 +1,33 @@ +package Visualizer; + + +import javax.swing.JComponent; +import java.awt.Graphics; +import java.awt.*; + + +public class axis extends JComponent { + + int xBound = 0; + int yBound = 0; + + axis(int currentX, int currentY) { + xBound = currentX; + yBound = currentY; + } + + public void paint(Graphics g) { + Graphics2D g2 = (Graphics2D) g; + g2.setColor(Color.green); + g2.drawLine(xBound/2, 0, xBound/2, yBound); + g2.drawLine(0, yBound/2, xBound, yBound/2); + } + + public void setXBound(int newX){ + this.xBound = newX; + } + + public void setYBound(int newY){ + this.yBound = newY; + } +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/rudderPosition.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/rudderPosition.java new file mode 100644 index 0000000..ca1a5e1 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/rudderPosition.java @@ -0,0 +1,54 @@ +package Visualizer; + +import javax.swing.JComponent; +import java.awt.Graphics; +import java.awt.*; + +public class rudderPosition extends JComponent { + + int xBound = 0; + int yBound = 0; + + float rudderTravel = 0; + + rudderPosition(int currentXBound, int currentYBound) { + xBound = currentXBound; + yBound = currentYBound; + } + + public void paint(Graphics g) { + Graphics2D g2 = (Graphics2D) g; + int spacer = 10; + g.setColor(Color.gray); + g2.fillRect(0, spacer, xBound, yBound - spacer); + + g2.setColor(Color.red); + int width = (int) (xBound/2 * rudderTravel); + //g2.drawRect(xBound/2, 0 +spacer, width, yBound); + g2.fillRect(xBound/2, 0 + spacer, width, yBound); + + g.drawString("Yaw Left",0, yBound/2); + int textWidth = g.getFontMetrics().stringWidth("Roll Right"); + g.drawString("Yaw Right", xBound - textWidth, yBound/2); + // try { + // final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/ProjectModels/Visualizer/assets/Rudder Pedals.png")); + // Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); + // g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); + // } catch (IOException e) { + // System.out.print("Rudder Image Failed"); + // } + } + + public void setX(float newX) { + this.rudderTravel = newX; + } + + public void setXBound(int newX) { + this.xBound = newX; + } + + public void setYBound(int newY) { + this.yBound = newY; + } + +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/visualizer.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/visualizer.java new file mode 100644 index 0000000..d6c6913 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/visualizer.java @@ -0,0 +1,277 @@ +package Visualizer; + +import javax.swing.border.Border; +import javax.swing.*; +import java.awt.*; +import java.awt.event.ActionEvent; +import java.awt.event.ActionListener; +import java.io.IOException; + +import CognitiveModel.ModelFiles.*; + +public class visualizer { + + JFrame frame = new JFrame(); + JPanel frameBottom = new JPanel(); + JPanel controlDisplay = new JPanel(); + JPanel modelDisplay = new JPanel(); + JTextArea modelQueue = new JTextArea(); + JTextArea modelVision = new JTextArea(); + JPanel mainDisplay = new JPanel(); + JPanel visualizer = new JPanel(); + JPanel yokeGrid = new JPanel(); + axis axis = new axis(0,0); + rudderPosition rudderGrid = new rudderPosition(yokeGrid.getWidth(), 0); + yokePosition yoke = new yokePosition(yokeGrid.getWidth(), yokeGrid.getHeight()); + JLabel one = new JLabel(); + JLabel two = new JLabel(); + JLabel three = new JLabel(); + JLabel four = new JLabel(); + + Model m; + + + + public visualizer(Model m){ + this.m = m; + } + + public void initializeDisplay() { + try { + UIManager.setLookAndFeel("com.sun.java.swing.plaf.nimbus.NimbusLookAndFeel"); + } catch(Exception ignored){} + + frame.setPreferredSize(new Dimension(1700,270)); + frame.setLayout(new BorderLayout()); + frameBottom.setLayout(new GridLayout(1,2)); + frame.setVisible(true); + + + controlDisplay.setPreferredSize(new Dimension(100,100)); + + controlDisplay.setLayout(new GridLayout(2,4)); + + Font fontTitles = new Font("Impact", 1,40); + Font fontData = new Font("Monospaced", 1,30); + JLabel titleOne = new JLabel("Elevator"); + titleOne.setFont(fontTitles); + titleOne.setHorizontalAlignment(SwingConstants.CENTER); + titleOne.setVerticalAlignment(SwingConstants.BOTTOM); + JLabel titleTwo = new JLabel("Roll"); + titleTwo.setFont(fontTitles); + titleTwo.setHorizontalAlignment(SwingConstants.CENTER); + titleTwo.setVerticalAlignment(SwingConstants.BOTTOM); + JLabel titleThree = new JLabel("Yaw"); + titleThree.setFont(fontTitles); + titleThree.setHorizontalAlignment(SwingConstants.CENTER); + titleThree.setVerticalAlignment(SwingConstants.BOTTOM); + JLabel titleFour = new JLabel("Throttle"); + titleFour.setFont(fontTitles); + titleFour.setHorizontalAlignment(SwingConstants.CENTER); + titleFour.setVerticalAlignment(SwingConstants.BOTTOM); + one = new JLabel(); + one.setFont(fontData); + one.setHorizontalAlignment(SwingConstants.CENTER); + one.setVerticalAlignment(SwingConstants.TOP); + two = new JLabel(); + two.setFont(fontData); + two.setHorizontalAlignment(SwingConstants.CENTER); + two.setVerticalAlignment(SwingConstants.TOP); + three = new JLabel(); + three.setFont(fontData); + three.setHorizontalAlignment(SwingConstants.CENTER); + three.setVerticalAlignment(SwingConstants.TOP); + four = new JLabel(); + four.setFont(fontData); + four.setHorizontalAlignment(SwingConstants.CENTER); + four.setVerticalAlignment(SwingConstants.TOP); + + one.setText("Test"); + two.setText("Test"); + three.setText("Test"); + four.setText("Test"); + controlDisplay.add(titleOne); + controlDisplay.add(titleTwo); + controlDisplay.add(titleThree); + controlDisplay.add(titleFour); + controlDisplay.add(one); + controlDisplay.add(two); + controlDisplay.add(three); + controlDisplay.add(four); + + + visualizer.setLayout(new GridLayout(2,1)); + + + //Col 1 of Visualizer + + yokeGrid.setMinimumSize(new Dimension(100,100)); + //grid.setOpaque(true); + // grid.setLayout(null); + yokeGrid.setBackground(Color.black); + yokeGrid.setVisible(true); + // grid.setLayout(new GridLayout(1,1)); + yokeGrid.setLayout(new OverlayLayout(yokeGrid)); + + yoke = new yokePosition(yokeGrid.getWidth(), yokeGrid.getHeight()); + // yaw yaw = new yaw(grid.getWidth(), grid.getHeight()); + axis = new axis(yokeGrid.getWidth(), yokeGrid.getHeight()); + + // grid.setLayer(axis, layer1); + yokeGrid.add(axis); + yokeGrid.add(yoke); + // grid.add(yaw); + // grid.setLayer(yoke, layer2); + + Border greenLine = BorderFactory.createLineBorder(Color.green); + yokeGrid.setBorder(greenLine); + visualizer.add(yokeGrid); + //Row 2 of Visualizer + //Rudder Vizualizer + rudderGrid = new rudderPosition(yokeGrid.getWidth(), 0); + visualizer.add(rudderGrid); + + JToolBar tool = new JToolBar("Toolbar"); + JButton b1 = new JButton("Data Log Disabled"); + ActionListener press = new ActionListener() { + @Override + public void actionPerformed(ActionEvent e) { + if(m.logPermission() == false){ + m.startLog(); + JOptionPane.showMessageDialog(frame,"Data Logging Enabled"); + tool.setBackground(Color.green); + b1.setText("Data Log Enabled"); + } else { + m.stopLog(); + JOptionPane.showMessageDialog(frame,"Data Logging Disabled"); + tool.setBackground(Color.white); + b1.setText("Data Log Disabled"); + } + + } + + }; + b1.addActionListener(press); + JButton b2 = new JButton("button 2"); + tool.setBackground(Color.red); + tool.setOrientation(1); + tool.add(b1); + tool.add(b2); + frame.add(tool,BorderLayout.WEST); + + + + JPanel buttonBar = new JPanel(); + buttonBar.setLayout(new GridLayout(2,1)); + JToolBar tool2 = new JToolBar("Toolbar"); + JButton b3 = new JButton("button 2"); + JButton b4 = new JButton("button 2"); + tool2.add(b3); + tool2.add(b4); + + JToolBar tool3 = new JToolBar("Toolbar"); + JButton b5 = new JButton("button 3"); + JButton b6 = new JButton("button 3"); + tool3.add(b5); + tool3.add(b6); + buttonBar.add(tool2); + buttonBar.add(tool3); + + modelQueue.setRows(3); + modelQueue.setPreferredSize(new Dimension(250, mainDisplay.getWidth())); + + + modelVision.setRows(1); + Font font = new Font("Verdana", Font.BOLD, 12); + modelVision.setFont(font); + modelVision.setBackground(Color.PINK); + modelVision.setPreferredSize(new Dimension(250, mainDisplay.getWidth())); + + modelDisplay.setLayout(new GridLayout(2,1)); + modelDisplay.add(modelQueue); + modelDisplay.add(modelVision); + + + mainDisplay.setLayout(new BorderLayout()); + mainDisplay.add(controlDisplay,BorderLayout.CENTER); + mainDisplay.add(modelDisplay,BorderLayout.SOUTH); + + + frameBottom.add(mainDisplay); // Left Side + frameBottom.add(visualizer); // Right Side + frame.add(frameBottom,BorderLayout.CENTER); + frame.add(buttonBar, BorderLayout.SOUTH); + frame.pack(); + } + + + public void updateVisualizer(Model m) throws IOException { + float[] ctrl1 = m.getCurrentControls(); + + one.setText(String.valueOf(ctrl1[0])); + if(ctrl1[0] >= 0 ) { + one.setForeground(Color.green); + } else { + one.setForeground(Color.red); + } + two.setText(String.valueOf(ctrl1[1])); + if(ctrl1[1] >= 0 ) { + two.setForeground(Color.green); + } else { + two.setForeground(Color.red); + } + three.setText(String.valueOf(ctrl1[2])); + if(ctrl1[2] >= 0 ) { + three.setForeground(Color.green); + } else { + three.setForeground(Color.red); + } + four.setText(String.valueOf(ctrl1[3])); + if(ctrl1[3] >= 0 ) { + four.setForeground(Color.green); + } else { + four.setForeground(Color.red); + } + + yoke.setXBound(yokeGrid.getWidth()); + yoke.setYBound(yokeGrid.getHeight()); + yoke.setX(ctrl1[1]); + yoke.setY(ctrl1[0]); + yoke.repaint(); + + rudderGrid.setXBound(yokeGrid.getWidth()); + rudderGrid.setYBound(yokeGrid.getHeight()); + rudderGrid.setX(ctrl1[2]); + rudderGrid.repaint(); + + + modelQueue.setText(m.getQueue().queueToString()); + modelQueue.setPreferredSize(new Dimension(mainDisplay.getWidth(),100)); + + modelVision.setPreferredSize(new Dimension(mainDisplay.getWidth(),100)); + + modelVision.setText("We just looked at: " + m.getStoredVisionTarget() +"\n" + + "Result: " + m.getStoredVisionResult()[0]); + + + // yaw.setYBound(grid.getHeight()); + // yaw.setYBound(grid.getHeight()); + // yaw.setX(ctrl1[2]); + // yaw.repaint(); + + axis.setXBound(yokeGrid.getWidth()); + axis.setYBound(yokeGrid.getHeight()); + axis.repaint(); + + + + JButton j = new JButton(); + + } + +} + + + + + diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/yokePosition.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/yokePosition.java new file mode 100644 index 0000000..e5820de --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/Visualizer/yokePosition.java @@ -0,0 +1,73 @@ +package Visualizer; + +import javax.swing.JComponent; +import java.awt.Graphics; +import java.awt.*; + +class yokePosition extends JComponent { + float x = 0; + int xBound = 0; + float y = 0; + int yBound = 0; + + int width = 50; + int height = 50; + + yokePosition(int currentX, int currentY) { + xBound = currentX; + yBound = currentY; + } + + yokePosition() { + + } + + public void paint(Graphics g) + { + Graphics2D g2 = (Graphics2D) g; + + // try { + // final BufferedImage image = ImageIO.read(new File("/Users/flyingtopher/Desktop/Code Citadel/School/2. Research/Fork Clone/XPlaneConnectCSP/Java/ProjectModels/Visualizer/assets/Yoke Symbol.png")); + // Image scaledImage = image.getScaledInstance(xBound, yBound, Image.SCALE_DEFAULT); + + // g.drawImage(scaledImage, 0, 0, getFocusCycleRootAncestor()); + // } catch (IOException e){ + // System.out.print("Rudder Image Failed"); + // } + + g2.setColor(Color.red); + int currX = (int)(x*xBound) + xBound/2 - width/2; + int currY = (int)(y*yBound) + yBound/2 - height/2; + +// System.out.println("CurrX, CurrY: " + currX +", " + currY); + // g2.drawOval(currX, currY, width, height); + + g2.fillOval(currX, currY, width, height); + g.setColor(Color.green); + int height = g.getFontMetrics().getHeight(); + g.drawString("Nose Down", (xBound/2) + 5, height); + g.drawString("Nose Up", (xBound/2) + 5, yBound - height/2); + g.drawString("Roll Left",0, yBound/2); + int width = g.getFontMetrics().stringWidth("Roll Right"); + g.drawString("Roll Right", xBound - width, yBound/2); + + + + + } + + public void setX(float newX){ + this.x = newX; + } + + public void setXBound(int newX){ + this.xBound = newX; + } + + public void setY(float newY){ + this.y = newY; + } + public void setYBound(int newY){ + this.yBound = newY; + } +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/XPlaneConnect.iml b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/XPlaneConnect.iml new file mode 100644 index 0000000..8acc69f --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/XPlaneConnect.iml @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv new file mode 100644 index 0000000..06ff19d --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv @@ -0,0 +1,142 @@ +Elevator, Roll, Yaw, Throttle, Flaps +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.025160, 0.615686, 0.121569, 1.000000, 0.000000 +-0.018032, 0.615686, 0.121569, 1.000000, 0.000000 +-0.008946, 0.558105, 0.110294, 1.000000, 0.000000 +0.016080, 0.046859, 0.010190, 1.000000, 0.000000 +0.041168, -0.465645, -0.090160, 1.000000, 0.000000 +0.072984, -0.714807, -0.141151, 1.000000, 0.000000 +0.105265, -0.940778, -0.187779, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.111637, -1.000000, -0.200000, 1.000000, 0.000000 +0.107753, -1.000000, -0.200000, 1.000000, 0.000000 +0.090097, -0.804658, -0.160537, 1.000000, 0.000000 +0.059241, -0.422819, -0.083398, 1.000000, 0.000000 +0.033948, -0.164720, -0.032111, 1.000000, 0.000000 +0.015275, -0.045211, -0.009702, 1.000000, 0.000000 +0.003922, 0.032740, 0.005244, 1.000000, 0.000000 +0.003922, 0.046948, 0.008796, 1.000000, 0.000000 +0.003922, 0.061786, 0.012259, 1.000000, 0.000000 +0.003922, 0.083051, 0.015803, 1.000000, 0.000000 +0.003922, 0.104358, 0.019354, 1.000000, 0.000000 +0.003922, 0.125915, 0.022947, 1.000000, 0.000000 +0.003922, 0.148159, 0.026654, 1.000000, 0.000000 +0.003922, 0.158683, 0.030322, 1.000000, 0.000000 +0.003922, 0.166116, 0.034039, 1.000000, 0.000000 +0.003922, 0.283275, 0.057725, 1.000000, 0.000000 +0.003922, 0.457834, 0.091878, 1.000000, 0.000000 +0.003922, 0.546335, 0.110113, 1.000000, 0.000000 +0.003922, 0.574907, 0.117256, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.004623, 0.578134, 0.118764, 1.000000, 0.000000 +0.011669, 0.437213, 0.090580, 1.000000, 0.000000 +0.019799, 0.276776, 0.058441, 1.000000, 0.000000 +0.030902, 0.180551, 0.036236, 1.000000, 0.000000 +0.041750, 0.086531, 0.014539, 1.000000, 0.000000 +0.046236, 0.055917, 0.008666, 1.000000, 0.000000 +0.049697, 0.035152, 0.005205, 1.000000, 0.000000 +0.050980, 0.007684, -0.000032, 1.000000, 0.000000 +0.050980, -0.031292, -0.007827, 1.000000, 0.000000 +0.047747, -0.076850, -0.016615, 1.000000, 0.000000 +0.040527, -0.134607, -0.027445, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.030835, -0.156406, -0.030835, 1.000000, 0.000000 +0.023403, -0.122963, -0.023403, 1.000000, 0.000000 +0.019608, -0.087175, -0.015866, 1.000000, 0.000000 +0.019608, -0.048247, -0.008081, 1.000000, 0.000000 +0.019608, -0.025737, -0.003922, 1.000000, 0.000000 +0.019608, -0.022039, -0.003922, 1.000000, 0.000000 +0.019608, -0.006105, -0.001466, 1.000000, 0.000000 +0.019608, 0.033829, 0.005794, 1.000000, 0.000000 +0.019608, 0.075119, 0.013715, 1.000000, 0.000000 +0.019608, 0.116461, 0.023256, 1.000000, 0.000000 +0.019608, 0.153501, 0.031803, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.016330, 0.198129, 0.041850, 1.000000, 0.000000 +0.013181, 0.226473, 0.048149, 1.000000, 0.000000 +0.011765, 0.269528, 0.056492, 1.000000, 0.000000 +0.011765, 0.308989, 0.063667, 1.000000, 0.000000 +0.011765, 0.330794, 0.066667, 1.000000, 0.000000 +0.011765, 0.340486, 0.066667, 1.000000, 0.000000 +0.011765, 0.350149, 0.067232, 1.000000, 0.000000 +0.011765, 0.357444, 0.070879, 1.000000, 0.000000 +0.011765, 0.365362, 0.074611, 1.000000, 0.000000 +0.011765, 0.406242, 0.080900, 1.000000, 0.000000 +0.011765, 0.442962, 0.086549, 1.000000, 0.000000 +0.011765, 0.469278, 0.091502, 1.000000, 0.000000 +0.011765, 0.476131, 0.094928, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.460970, 0.093927, 1.000000, 0.000000 +0.011765, 0.377419, 0.077860, 1.000000, 0.000000 +0.011765, 0.290506, 0.061146, 1.000000, 0.000000 +0.017800, 0.030978, 0.007522, 1.000000, 0.000000 +0.024597, -0.247670, -0.050246, 1.000000, 0.000000 +0.027451, -0.376429, -0.075975, 1.000000, 0.000000 +0.027451, -0.398298, -0.078709, 1.000000, 0.000000 +0.027451, -0.421658, -0.081629, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.034393, -0.253911, -0.047645, 1.000000, 0.000000 +0.048982, 0.110811, 0.025300, 1.000000, 0.000000 +0.059845, 0.368099, 0.076553, 1.000000, 0.000000 +0.063351, 0.406663, 0.083564, 1.000000, 0.000000 +0.066667, 0.443677, 0.090196, 1.000000, 0.000000 +0.066667, 0.454719, 0.090196, 1.000000, 0.000000 +0.066667, 0.465692, 0.090196, 1.000000, 0.000000 +0.066667, 0.469954, 0.093483, 1.000000, 0.000000 +0.066667, 0.473556, 0.097085, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv new file mode 100644 index 0000000..aaf4af1 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv @@ -0,0 +1,176 @@ +Elevator, Roll, Yaw, Throttle, Flaps +0.003922, -0.145098, -0.027451, 1.000000, 0.000000 +0.003922, -0.145098, -0.027451, 1.000000, 0.000000 +0.001758, -0.106149, -0.020959, 1.000000, 0.000000 +-0.001903, -0.040256, -0.009977, 1.000000, 0.000000 +-0.003922, -0.002225, -0.002225, 1.000000, 0.000000 +-0.003922, 0.001639, 0.001639, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.004704, 0.003922, 1.000000, 0.000000 +-0.003922, 0.008182, 0.003922, 1.000000, 0.000000 +-0.003922, 0.012505, 0.003922, 1.000000, 0.000000 +-0.003922, 0.022975, 0.003922, 1.000000, 0.000000 +-0.003922, 0.033004, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.000840, 0.035294, 0.003922, 1.000000, 0.000000 +0.003379, 0.035294, 0.003922, 1.000000, 0.000000 +0.051002, 0.031673, 0.003922, 1.000000, 0.000000 +0.105875, 0.027452, 0.003922, 1.000000, 0.000000 +0.109934, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.104427, 0.027451, 0.003922, 1.000000, 0.000000 +0.077874, 0.027451, 0.003922, 1.000000, 0.000000 +0.050050, 0.027451, 0.003922, 1.000000, 0.000000 +0.017162, 0.027451, 0.003922, 1.000000, 0.000000 +-0.016851, 0.027451, 0.003922, 1.000000, 0.000000 +-0.023007, 0.027451, 0.003922, 1.000000, 0.000000 +-0.026621, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.028397, 0.027451, 0.003922, 1.000000, 0.000000 +-0.031739, 0.027451, 0.003922, 1.000000, 0.000000 +-0.034961, 0.027451, 0.003922, 1.000000, 0.000000 +-0.038293, 0.027451, 0.003922, 1.000000, 0.000000 +-0.042012, 0.027451, 0.003922, 1.000000, 0.000000 +-0.043137, 0.027451, 0.003922, 1.000000, 0.000000 +-0.043137, 0.027451, 0.003922, 1.000000, 0.000000 +-0.044327, 0.027451, 0.003922, 1.000000, 0.000000 +-0.047871, 0.027451, 0.003922, 1.000000, 0.000000 +-0.051675, 0.027451, 0.003922, 1.000000, 0.000000 +-0.055168, 0.027451, 0.003922, 1.000000, 0.000000 +-0.058754, 0.027451, 0.003922, 1.000000, 0.000000 +-0.065101, 0.027451, 0.003922, 1.000000, 0.000000 +-0.072274, 0.027451, 0.003922, 1.000000, 0.000000 +-0.082223, 0.027451, 0.003922, 1.000000, 0.000000 +-0.092332, 0.027451, 0.003922, 1.000000, 0.000000 +-0.103807, 0.027451, 0.003922, 1.000000, 0.000000 +-0.119170, 0.027451, 0.003922, 1.000000, 0.000000 +-0.135084, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.127643, 0.024247, 0.003922, 1.000000, 0.000000 +-0.116964, 0.020687, 0.003922, 1.000000, 0.000000 +-0.101080, 0.019608, 0.003922, 1.000000, 0.000000 +-0.084524, 0.019608, 0.003922, 1.000000, 0.000000 +-0.073260, 0.019608, 0.003922, 1.000000, 0.000000 +-0.069383, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.006472, 0.001732, 1.000000, 0.000000 +-0.066667, -0.016772, -0.002142, 1.000000, 0.000000 +-0.072984, -0.048510, -0.008133, 1.000000, 0.000000 +-0.084076, -0.085483, -0.015528, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/hamcrest-core-1.3.jar b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/hamcrest-core-1.3.jar new file mode 100644 index 0000000..9d5fe16 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/hamcrest-core-1.3.jar differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/junit-4.13.2.jar b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/junit-4.13.2.jar new file mode 100644 index 0000000..6da55d8 Binary files /dev/null and b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/lib/junit-4.13.2.jar differ diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess.java new file mode 100644 index 0000000..3a8f409 --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess.java @@ -0,0 +1,50 @@ +import java.io.IOException; +import java.net.SocketException; + +import CognitiveModel.ModelFiles.*; + +import Visualizer.visualizer; + +public abstract class testprocess { + + Model m = new Model(); + + public testprocess(Model inputM, XPlaneConnect xpc) { + m = inputM; + m.establishConnection(xpc); + } + + + public void runProcess() { + try (XPlaneConnect xpc = new XPlaneConnect()) { + // Ensure connection established. + m = new Model(xpc); + m.activateModel(); + m.createAction(ActionType.VISION, null, 0, "sim/cockpit2/gauges/indicators/airspeed_kts_pilot"); + m.createAction(ActionType.MOTOR, MotorType.PITCHUP, 0, null); + m.printModelQueue(); + visualizer vis1 = new visualizer(m); + vis1.initializeDisplay(); + + while (m.isActive() && !m.isEmpty()) { + innerProcess(vis1); + } + + + + } catch (SocketException ex) { + System.out.println("Unable to set up the connection. (Error message was '" + ex.getMessage() + "'.)"); + } catch (IOException ex) { + System.out.println( + "Something went wrong with one of the commands. (Error message was '" + ex.getMessage() + "'.)"); + } + System.out.println("Exiting"); + + } + + public void innerProcess(visualizer vis1){ + System.out.println("Using default innerProcess"); + + } + +} diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess1.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess1.java new file mode 100644 index 0000000..37b58fa --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess1.java @@ -0,0 +1,36 @@ +import java.io.IOException; +import java.net.SocketException; + +import CognitiveModel.ModelFiles.*; +import Visualizer.visualizer; + +public class testprocess1 extends testprocess { + + public testprocess1(Model inputM, XPlaneConnect xpc) { + super(inputM, xpc); + + } + + @Override + public void innerProcess(visualizer vis1) { + float[] array = m.next(); + double r = Math.random(); + if (m.getModelQueueLength() < 5) { + if (r > 0.5) { +// m.createAction(ActionType.DELAY, null, 200, null); +// m.createAction(ActionType.DELAY, null, 200, null); + m.createAction(ActionType.VISION, null, 0, "sim/cockpit2/gauges/indicators/airspeed_kts_pilot"); + } else { + m.createAction(ActionType.VISION, null, 0, "sim/cockpit2/gauges/indicators/airspeed_kts_pilot"); + } + } + // m.printModelQueue(); + m.logData(); + try { + vis1.updateVisualizer(m); + } catch (IOException e) { + // TODO Auto-generated catch block + e.printStackTrace(); + } + } +} \ No newline at end of file diff --git a/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess2.java b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess2.java new file mode 100644 index 0000000..ac39c2f --- /dev/null +++ b/Java/PROJECT BACKUPS/2024-12-14 ProjectModels/testprocess2.java @@ -0,0 +1,12 @@ +import CognitiveModel.ModelFiles.XPlaneConnect; +import Visualizer.visualizer; +import CognitiveModel.ModelFiles.*; + +public class testprocess2 extends testprocess { + + public testprocess2(Model m, XPlaneConnect xpc){ + super(m, xpc); + } + + +} diff --git a/Java/ProjectModels/Main.java b/Java/ProjectModels/Main.java index b245b73..5accded 100644 --- a/Java/ProjectModels/Main.java +++ b/Java/ProjectModels/Main.java @@ -16,14 +16,9 @@ public class Main { testprocess1 tp1 = new testprocess1(); tp1.runProcess(); -// Screen s2 = new Screen(new GridLayout(1,2)); -// s2.add(t3); -// s2.add(t4); - - - - - +// Screen s2 = new Screen(new GridLayout(1,2)); +// s2.add(t3); +// s2.add(t4); // testprocess2 tp2 = new testprocess2(m, null); // tp2.runProcess(); diff --git a/Java/ProjectModels/README.txt b/Java/ProjectModels/README.txt index 64d362d..0ef1f9f 100644 --- a/Java/ProjectModels/README.txt +++ b/Java/ProjectModels/README.txt @@ -1,7 +1,14 @@ Project Log: - -TODO: Backfill from Google doc project log; create automated prompt. - -2024-12-17: { - -} +{ title: "Title Test" +date: "Date Test" + entry:"Well Well Well, Loooky what we have here. I need some lorem +Ipsum +Up +In +Here +BOOYAHHHHHHHHH" +}, +{ title: "dasd" +date: "asdasd" + entry:"Anotha one" +}, \ No newline at end of file diff --git a/Java/ProjectModels/Test.json b/Java/ProjectModels/Test.json new file mode 100644 index 0000000..f94d285 --- /dev/null +++ b/Java/ProjectModels/Test.json @@ -0,0 +1,9 @@ +{ title: "Title Test", + date: "Date Test", + entry:"Well Well Well, Loooky what we have here. I need some lorem + Ipsum + Up + In + Here + BOOYAHHHHHHHHH", +}, \ No newline at end of file diff --git a/Java/ProjectModels/Visualizer/visualizer.java b/Java/ProjectModels/Visualizer/visualizer.java index c360976..1948398 100644 --- a/Java/ProjectModels/Visualizer/visualizer.java +++ b/Java/ProjectModels/Visualizer/visualizer.java @@ -5,6 +5,8 @@ import javax.swing.*; import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; +import java.io.BufferedWriter; +import java.io.FileWriter; import java.io.IOException; import CognitiveModel.ModelFiles.*; @@ -28,6 +30,10 @@ public class visualizer extends Screen { JLabel four = new JLabel(); Timer t = new Timer(1, null); Model m; + + + FileWriter fw; + BufferedWriter bw; public visualizer(Model m) { super(new BorderLayout()); this.m = m; @@ -163,12 +169,16 @@ public class visualizer extends Screen { tool.setBackground(Color.white); b1.setText("Data Log Disabled"); } - + + } }; b1.addActionListener(press); - JButton b2 = new JButton("button 2"); + JButton b2 = new JButton("Make Note"); + b2.addActionListener(e-> { + makeNote(); + }); tool.setBackground(Color.red); tool.setOrientation(1); tool.add(b1); @@ -287,6 +297,59 @@ public class visualizer extends Screen { public Timer exportTimer() { return t; + } + + public void makeNote() { + JFrame noteFrame = new JFrame(); + JPanel noteScreen = new JPanel(); + noteScreen.setLayout(new GridLayout(4,1)); + JTextField title = new JTextField(); + JTextField date = new JTextField(); + JTextArea entry = new JTextArea(); + JButton saveNote = new JButton(); + try { + fw = new FileWriter("README.txt", true); + bw = new BufferedWriter(fw); + + noteFrame.setPreferredSize(new Dimension(500,500)); + + + noteScreen.add(title); + noteScreen.add(date); + noteScreen.add(entry); + noteScreen.add(saveNote); + noteFrame.add(noteScreen); + + noteFrame.pack(); + noteFrame.setVisible(true); + + saveNote.addActionListener(e -> { + try { + String newEntry = String.format("\n{ title: \"%s\"\ndate: \"%s\"\n entry:\"%s\"\n},",title.getText(),date.getText(),entry.getText()); + + bw.write(newEntry); + bw.flush(); + bw.close(); + } catch (IOException e1) { + JOptionPane error = new JOptionPane("Error saving"); + } + + }); + + + } catch(IOException e) { + e.printStackTrace(); + } + + + + + noteFrame.setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE); + + + + + } } diff --git a/Java/ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv b/Java/ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv new file mode 100644 index 0000000..06ff19d --- /dev/null +++ b/Java/ProjectModels/dataLog/2024-12-07T21:38:31.973740.csv @@ -0,0 +1,142 @@ +Elevator, Roll, Yaw, Throttle, Flaps +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.027451, 0.615686, 0.121569, 1.000000, 0.000000 +-0.025160, 0.615686, 0.121569, 1.000000, 0.000000 +-0.018032, 0.615686, 0.121569, 1.000000, 0.000000 +-0.008946, 0.558105, 0.110294, 1.000000, 0.000000 +0.016080, 0.046859, 0.010190, 1.000000, 0.000000 +0.041168, -0.465645, -0.090160, 1.000000, 0.000000 +0.072984, -0.714807, -0.141151, 1.000000, 0.000000 +0.105265, -0.940778, -0.187779, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.113726, -1.000000, -0.200000, 1.000000, 0.000000 +0.111637, -1.000000, -0.200000, 1.000000, 0.000000 +0.107753, -1.000000, -0.200000, 1.000000, 0.000000 +0.090097, -0.804658, -0.160537, 1.000000, 0.000000 +0.059241, -0.422819, -0.083398, 1.000000, 0.000000 +0.033948, -0.164720, -0.032111, 1.000000, 0.000000 +0.015275, -0.045211, -0.009702, 1.000000, 0.000000 +0.003922, 0.032740, 0.005244, 1.000000, 0.000000 +0.003922, 0.046948, 0.008796, 1.000000, 0.000000 +0.003922, 0.061786, 0.012259, 1.000000, 0.000000 +0.003922, 0.083051, 0.015803, 1.000000, 0.000000 +0.003922, 0.104358, 0.019354, 1.000000, 0.000000 +0.003922, 0.125915, 0.022947, 1.000000, 0.000000 +0.003922, 0.148159, 0.026654, 1.000000, 0.000000 +0.003922, 0.158683, 0.030322, 1.000000, 0.000000 +0.003922, 0.166116, 0.034039, 1.000000, 0.000000 +0.003922, 0.283275, 0.057725, 1.000000, 0.000000 +0.003922, 0.457834, 0.091878, 1.000000, 0.000000 +0.003922, 0.546335, 0.110113, 1.000000, 0.000000 +0.003922, 0.574907, 0.117256, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.003922, 0.592157, 0.121569, 1.000000, 0.000000 +0.004623, 0.578134, 0.118764, 1.000000, 0.000000 +0.011669, 0.437213, 0.090580, 1.000000, 0.000000 +0.019799, 0.276776, 0.058441, 1.000000, 0.000000 +0.030902, 0.180551, 0.036236, 1.000000, 0.000000 +0.041750, 0.086531, 0.014539, 1.000000, 0.000000 +0.046236, 0.055917, 0.008666, 1.000000, 0.000000 +0.049697, 0.035152, 0.005205, 1.000000, 0.000000 +0.050980, 0.007684, -0.000032, 1.000000, 0.000000 +0.050980, -0.031292, -0.007827, 1.000000, 0.000000 +0.047747, -0.076850, -0.016615, 1.000000, 0.000000 +0.040527, -0.134607, -0.027445, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.035294, -0.176471, -0.035294, 1.000000, 0.000000 +0.030835, -0.156406, -0.030835, 1.000000, 0.000000 +0.023403, -0.122963, -0.023403, 1.000000, 0.000000 +0.019608, -0.087175, -0.015866, 1.000000, 0.000000 +0.019608, -0.048247, -0.008081, 1.000000, 0.000000 +0.019608, -0.025737, -0.003922, 1.000000, 0.000000 +0.019608, -0.022039, -0.003922, 1.000000, 0.000000 +0.019608, -0.006105, -0.001466, 1.000000, 0.000000 +0.019608, 0.033829, 0.005794, 1.000000, 0.000000 +0.019608, 0.075119, 0.013715, 1.000000, 0.000000 +0.019608, 0.116461, 0.023256, 1.000000, 0.000000 +0.019608, 0.153501, 0.031803, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.019608, 0.168628, 0.035294, 1.000000, 0.000000 +0.016330, 0.198129, 0.041850, 1.000000, 0.000000 +0.013181, 0.226473, 0.048149, 1.000000, 0.000000 +0.011765, 0.269528, 0.056492, 1.000000, 0.000000 +0.011765, 0.308989, 0.063667, 1.000000, 0.000000 +0.011765, 0.330794, 0.066667, 1.000000, 0.000000 +0.011765, 0.340486, 0.066667, 1.000000, 0.000000 +0.011765, 0.350149, 0.067232, 1.000000, 0.000000 +0.011765, 0.357444, 0.070879, 1.000000, 0.000000 +0.011765, 0.365362, 0.074611, 1.000000, 0.000000 +0.011765, 0.406242, 0.080900, 1.000000, 0.000000 +0.011765, 0.442962, 0.086549, 1.000000, 0.000000 +0.011765, 0.469278, 0.091502, 1.000000, 0.000000 +0.011765, 0.476131, 0.094928, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.482353, 0.098039, 1.000000, 0.000000 +0.011765, 0.460970, 0.093927, 1.000000, 0.000000 +0.011765, 0.377419, 0.077860, 1.000000, 0.000000 +0.011765, 0.290506, 0.061146, 1.000000, 0.000000 +0.017800, 0.030978, 0.007522, 1.000000, 0.000000 +0.024597, -0.247670, -0.050246, 1.000000, 0.000000 +0.027451, -0.376429, -0.075975, 1.000000, 0.000000 +0.027451, -0.398298, -0.078709, 1.000000, 0.000000 +0.027451, -0.421658, -0.081629, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.027451, -0.427451, -0.082353, 1.000000, 0.000000 +0.034393, -0.253911, -0.047645, 1.000000, 0.000000 +0.048982, 0.110811, 0.025300, 1.000000, 0.000000 +0.059845, 0.368099, 0.076553, 1.000000, 0.000000 +0.063351, 0.406663, 0.083564, 1.000000, 0.000000 +0.066667, 0.443677, 0.090196, 1.000000, 0.000000 +0.066667, 0.454719, 0.090196, 1.000000, 0.000000 +0.066667, 0.465692, 0.090196, 1.000000, 0.000000 +0.066667, 0.469954, 0.093483, 1.000000, 0.000000 +0.066667, 0.473556, 0.097085, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 +0.066667, 0.474510, 0.098039, 1.000000, 0.000000 diff --git a/Java/ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv b/Java/ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv new file mode 100644 index 0000000..aaf4af1 --- /dev/null +++ b/Java/ProjectModels/dataLog/2024-12-07T21:38:42.670551.csv @@ -0,0 +1,176 @@ +Elevator, Roll, Yaw, Throttle, Flaps +0.003922, -0.145098, -0.027451, 1.000000, 0.000000 +0.003922, -0.145098, -0.027451, 1.000000, 0.000000 +0.001758, -0.106149, -0.020959, 1.000000, 0.000000 +-0.001903, -0.040256, -0.009977, 1.000000, 0.000000 +-0.003922, -0.002225, -0.002225, 1.000000, 0.000000 +-0.003922, 0.001639, 0.001639, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.003922, 0.003922, 1.000000, 0.000000 +-0.003922, 0.004704, 0.003922, 1.000000, 0.000000 +-0.003922, 0.008182, 0.003922, 1.000000, 0.000000 +-0.003922, 0.012505, 0.003922, 1.000000, 0.000000 +-0.003922, 0.022975, 0.003922, 1.000000, 0.000000 +-0.003922, 0.033004, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.003922, 0.035294, 0.003922, 1.000000, 0.000000 +-0.000840, 0.035294, 0.003922, 1.000000, 0.000000 +0.003379, 0.035294, 0.003922, 1.000000, 0.000000 +0.051002, 0.031673, 0.003922, 1.000000, 0.000000 +0.105875, 0.027452, 0.003922, 1.000000, 0.000000 +0.109934, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.113726, 0.027451, 0.003922, 1.000000, 0.000000 +0.104427, 0.027451, 0.003922, 1.000000, 0.000000 +0.077874, 0.027451, 0.003922, 1.000000, 0.000000 +0.050050, 0.027451, 0.003922, 1.000000, 0.000000 +0.017162, 0.027451, 0.003922, 1.000000, 0.000000 +-0.016851, 0.027451, 0.003922, 1.000000, 0.000000 +-0.023007, 0.027451, 0.003922, 1.000000, 0.000000 +-0.026621, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.027451, 0.027451, 0.003922, 1.000000, 0.000000 +-0.028397, 0.027451, 0.003922, 1.000000, 0.000000 +-0.031739, 0.027451, 0.003922, 1.000000, 0.000000 +-0.034961, 0.027451, 0.003922, 1.000000, 0.000000 +-0.038293, 0.027451, 0.003922, 1.000000, 0.000000 +-0.042012, 0.027451, 0.003922, 1.000000, 0.000000 +-0.043137, 0.027451, 0.003922, 1.000000, 0.000000 +-0.043137, 0.027451, 0.003922, 1.000000, 0.000000 +-0.044327, 0.027451, 0.003922, 1.000000, 0.000000 +-0.047871, 0.027451, 0.003922, 1.000000, 0.000000 +-0.051675, 0.027451, 0.003922, 1.000000, 0.000000 +-0.055168, 0.027451, 0.003922, 1.000000, 0.000000 +-0.058754, 0.027451, 0.003922, 1.000000, 0.000000 +-0.065101, 0.027451, 0.003922, 1.000000, 0.000000 +-0.072274, 0.027451, 0.003922, 1.000000, 0.000000 +-0.082223, 0.027451, 0.003922, 1.000000, 0.000000 +-0.092332, 0.027451, 0.003922, 1.000000, 0.000000 +-0.103807, 0.027451, 0.003922, 1.000000, 0.000000 +-0.119170, 0.027451, 0.003922, 1.000000, 0.000000 +-0.135084, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.137255, 0.027451, 0.003922, 1.000000, 0.000000 +-0.127643, 0.024247, 0.003922, 1.000000, 0.000000 +-0.116964, 0.020687, 0.003922, 1.000000, 0.000000 +-0.101080, 0.019608, 0.003922, 1.000000, 0.000000 +-0.084524, 0.019608, 0.003922, 1.000000, 0.000000 +-0.073260, 0.019608, 0.003922, 1.000000, 0.000000 +-0.069383, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.019608, 0.003922, 1.000000, 0.000000 +-0.066667, 0.006472, 0.001732, 1.000000, 0.000000 +-0.066667, -0.016772, -0.002142, 1.000000, 0.000000 +-0.072984, -0.048510, -0.008133, 1.000000, 0.000000 +-0.084076, -0.085483, -0.015528, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000 +-0.090196, -0.105882, -0.019608, 1.000000, 0.000000